Questions tagged [signed-applet]

A privileged applet signed by the digital certificate. Privileged applets do not have the security restrictions that are imposed on sandbox applets and can run outside the security sandbox.

Java applets are loaded on a client when the user visits a page containing an applet. The security model behind Java applets has been designed with the goal of protecting the user from malicious applets.

Applets are either sandbox applets or privileged applets. Sandbox applets are run in a security sandbox that allows only a set of safe operations. Privileged applets can run outside the security sandbox and have extensive capabilities to access the client.

Applets that are not signed are restricted to the security sandbox, and run only if the user accepts the applet. Applets that are signed by a certificate from a recognized certificate authority can either run only in the sandbox, or can request permission to run outside the sandbox. In either case, the user must accept the applet's security certificate, otherwise the applet is blocked from running.

Source: The Java Tutorials ("What Applets Can and Cannot Do")

126 questions
0
votes
1 answer

Unable to sign the jar file properly

I have TViewerApplet.class in com.abc.applet package.To sign the jar file I followed following steps: 1) Created jar file of com folder using cmd jar cf Viewer.jar com 2) Signed jar file using cmd jarsigner -keystore "C:\Documents and…
happy
  • 2,550
  • 17
  • 64
  • 109
0
votes
3 answers

Author is unknown for signed jar

Signing jar in Java, I have followed these three step to sign keytool -genkey -keystore myKeyStore -alias me keytool -selfcert -keystore myKeyStore -alias me jarsigner -keystore myKeyStore jarfile.jar me My questions are as follows : After that…
Mohan
  • 85
  • 1
  • 8
0
votes
1 answer

applet signing - lost keystore password

I have a question regarding the steps I should follow to use an old keystore (for which I've lost the password). Is there any way to use the certificate I received from Verisign if I can't import that certificate into the original keystore (because…
0
votes
1 answer

Copy signed jar with dependencies

I'm working on a maven web project. I've created a different maven project containing a couple of applets i want to use in the main project. This project is added as a dependency to the main project. In my Applet-project POM, I've added a plugin for…
0
votes
1 answer

working with signed applets

I would like to create and work a signed applet from an applet that I wrote. The applet itself uses a library (owlapi) that has to have the correct write rights in order to save the changes made to the owl repository. In order to do this I should…
JasperTack
  • 4,337
  • 5
  • 27
  • 39
-2
votes
1 answer

Signing a Java applet using an existing certificate

There are already a lot of questions about signing an applet, but there's one scenario, which I would have thought is more common, but apparently it isn't... How do I sign an applet, if I already have the CSR, the CA and the certificate? I think I'm…
justabuzz
  • 842
  • 1
  • 9
  • 19
1 2 3
8
9