Re: [rfc][icedtea-web] Fix NPE on Applet launch due to missing AppletStub
Jacob Wisor
gitne at excite.co.jp
Tue Aug 6 14:12:01 PDT 2013
Hello there!
> @@ -716,6 +717,7 @@ public class Launcher {
> String appletName = file.getApplet().getMainClass();
> Class appletClass = loader.loadClass(appletName);
> Applet applet = (Applet) appletClass.newInstance();
> + applet.setStub((AppletStub)cont);
You may want to catch a possible SecurityException in case the AppletStub has already been set. Malicious code may attach to the JVM process executing the Launcher and try either to replace the AppletStub or render the Launcher effectively inoperable by intentionally causing an unhandled SecurityException every time a specific applet or any applet is run and hence terminate the attacked JVM.
Regards,
Jacob
> // Finish setting up appletInstance.
> appletInstance.setApplet(applet);
> appletInstance.getAppletEnvironment().setApplet(applet);
"Adam Domurad"<adomurad at xxxxxxxxxx> wrote:
> Hi all. There is a problem that sometimes a showStatus() on an applet
> results in an NPE on applet load, due to a missing AppletStub. This
> patch sets it to NetxPanel (the container) as soon as possible.
>
> This helps stabilize a test case I'm working on.
>
> Cheers,
> -Adam
More information about the distro-pkg-dev
mailing list