/hg/icedtea-web: Fix PR612: NetDania application ends on java.se...
omajid at icedtea.classpath.org
omajid at icedtea.classpath.org
Wed Mar 2 08:51:12 PST 2011
changeset 5dbf0f9de599 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=5dbf0f9de599
author: Omair Majid <omajid at redhat.com>
date: Wed Mar 02 11:50:30 2011 -0500
Fix PR612: NetDania application ends on
java.security.AccessControlException
NetDania application ends on java.security.AccessControlException:
access denied (java.util.PropertyPermission browser read). Grant
untrusted applets and applications access to "browser" and
"broser.*" system properties.
2011-03-02 Omair Majid <omajid at redhat.com>
Fix PR612.
* NEWS: Update with fix.
* netx/net/sourceforge/jnlp/SecurityDesc.java: Add PropertyPermissions
for browser and browser.* to sandboxPermissions.
diffstat:
3 files changed, 7 insertions(+)
ChangeLog | 5 +++++
NEWS | 1 +
netx/net/sourceforge/jnlp/SecurityDesc.java | 1 +
diffs (38 lines):
diff -r 36ee2caa60d0 -r 5dbf0f9de599 ChangeLog
--- a/ChangeLog Wed Mar 02 10:09:07 2011 -0500
+++ b/ChangeLog Wed Mar 02 11:50:30 2011 -0500
@@ -1,3 +1,10 @@ 2011-03-02 Omair Majid <omajid at redhat.
+2011-03-02 Omair Majid <omajid at redhat.com>
+
+ Fix PR612.
+ * NEWS: Update with fix.
+ * netx/net/sourceforge/jnlp/SecurityDesc.java: Add PropertyPermissions for
+ browser and browser.* to sandboxPermissions.
+
2011-03-02 Omair Majid <omajid at redhat.com>
* netx/net/sourceforge/jnlp/controlpanel/CommandLine.java
diff -r 36ee2caa60d0 -r 5dbf0f9de599 NEWS
--- a/NEWS Wed Mar 02 10:09:07 2011 -0500
+++ b/NEWS Wed Mar 02 11:50:30 2011 -0500
@@ -20,6 +20,8 @@ New in release 1.1 (2011-XX-XX):
* NetX
- Use Firefox's proxy settings if possible
- RH669942: javaws fails to download version/packed files (missing support for jnlp.packEnabled and jnlp.versionEnabled)
+* Plugin
+ - PR612: NetDania application ends on java.security.AccessControlException: access denied (java.util.PropertyPermission browser read)
New in release 1.0 (2010-XX-XX):
diff -r 36ee2caa60d0 -r 5dbf0f9de599 netx/net/sourceforge/jnlp/SecurityDesc.java
--- a/netx/net/sourceforge/jnlp/SecurityDesc.java Wed Mar 02 10:09:07 2011 -0500
+++ b/netx/net/sourceforge/jnlp/SecurityDesc.java Wed Mar 02 11:50:30 2011 -0500
@@ -109,6 +109,8 @@ public class SecurityDesc {
new PropertyPermission("javaplugin.*", "read"),
new PropertyPermission("jnlp.*", "read,write"),
new PropertyPermission("javaws.*", "read,write"),
+ new PropertyPermission("browser", "read"),
+ new PropertyPermission("browser.*", "read"),
new RuntimePermission("exitVM"),
new RuntimePermission("stopThread"),
// disabled because we can't at this time prevent an
More information about the distro-pkg-dev
mailing list