Is there any other way of using signed applets
Posted
by
640KB
on Stack Overflow
See other posts from Stack Overflow
or by 640KB
Published on 2010-11-16T18:32:49Z
Indexed on
2011/01/13
6:53 UTC
Read the original article
Hit count: 255
Hi There, If I want to deploy high privileged applets they need to be signed. For that a certificate is created and then a jar file is signed with a jarsigner. After that in the HTML code one has to specify code,codebase AND archive (jar) which we signed before.
However I wrote a servlet which acts as two things:
- it sits at the URL pointed by the codebase and serves class bytecode to the applet.
- The same servlet also uses serialization to communicate with the applet whereby whenever the applet gets a class it does not know it goes to the codebase which ends up back at the servlet.
Unfortunately for signed applets one needs the archive. Now the servlet is also able to load a Certificate object and can send it to the applet too. So here is the setup: At one point the applet receives class bytecode and it also has the Certificate. It would be nice if the applet could instantiate all received classes using that certificate (otherwise code from jar is signed and outside is not which prompts nasty messages to the user).
So my question to you fine Java aficionados: Would there by any way for me to use the bytecode data and the Certificate to instantiate the class as a signed object so that the plugin pops the Security dialog, accepts teh certificate and elevates the object's privileges. What I could find is that the there is a class CodeSource that accepts codebase URL and certificate and is essential to the signing process. What I am not sure is how one could intercept the class loading inside applets to install additional certificates not obtained through a JAR file via archive.
What do you say? Thanks a bunch.
© Stack Overflow or respective owner