Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ grant {

// needed for multiple server implementations used in tests
permission java.net.SocketPermission "*", "accept,connect";

// needed because of problems in unbound LDAP library
permission java.util.PropertyPermission "*", "read,write";
};

grant codeBase "${codebase.netty-common}" {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
grant {
permission java.lang.RuntimePermission "setFactory";

// needed because of problems in unbound LDAP library
permission java.util.PropertyPermission "*", "read,write";
// needed for SAML
permission java.util.PropertyPermission "org.apache.xml.security.ignoreLineBreaks", "read,write";

// needed during initialization of OpenSAML library where xml security algorithms are registered
// see https://github.com/apache/santuario-java/blob/e79f1fe4192de73a975bc7246aee58ed0703343d/src/main/java/org/apache/xml/security/utils/JavaUtils.java#L205-L220
Expand Down