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
1
vote
1 answer

Java Applet init's very slow - java 1.8. u60

I have some troubles with Java Applets since my Customer updated his Java Environment to Version java 1.8. u60. The Applet init is always horrible slow on page request. The Problem appears only in IE (tested 8, 10, 11), no problem with Firefox! IE -…
blub
  • 359
  • 6
  • 23
1
vote
1 answer

How to determine if an Applet is Signed and display the provider of the certificate e.g. Digicert and the expiry date of the certificate

I want to check if a Jar File is Signed, the response should return the following details Certification file provider e.g. Trusted CA, Digicert, Norton etc Expiry Date of the signature if any Date Signed if any If the applet is Self Signed or…
1
vote
1 answer

Java - MacAddressApplet not working after update to 8u45

In one of my web applications I'm using the MacAddressApplet, which can be found here. Everything worked fine up to Java 8u31. Since update to Java 8u45 today it stopped working. The function call to retrieve the MAC address from the applet returns…
Andreas Hinderberger
  • 1,505
  • 23
  • 41
1
vote
0 answers

Java Plugin with two certificates and the same alias

I didn't even think of this possibility, but I've just seen a Java Control Panel (JDK 1.8.0_xx) with two certificates sharing the same alias. One is the renewed version of the other - that is, say one expires on Jul 1, 2015, the other expires on Jul…
Fabrizio Giudici
  • 532
  • 3
  • 15
1
vote
1 answer

Java 8 - Loading signed applet always displays a message box

I've just signed my applet with a certificate from Thawte and now when I load it from my web page I get a information popup that says "Do you want to run this application?" It's a "good" message box according to the java help because it identifies…
paul-2011
  • 675
  • 10
  • 27
1
vote
1 answer

Open client's desktop application from web page link

Is it possible to launch client side desktop applications like Adobe Reader,any game or any other soft-wares from web? I have got one link How to launch an EXE from Web page (asp.net) where one of them have given way to open a notepad(desktop…
Java
  • 2,451
  • 10
  • 48
  • 85
1
vote
0 answers

Java applet .jar file not load from database in JAVA version 8u25

We have a custom authorization in our application login page, authorization by using eToken and java (signed jar classes) and applet as login button on page. It's work fine on older and current java versions like 7u67, 7u71 but it's not work on new…
ruslan.ee
  • 11
  • 2
1
vote
1 answer

How to sign java applet with X.509 certificates from Comodo

I am a newbie to java security and know pretty much nothing about it. I have an existing jar that was given to me couple of years which was digitally signed. However, that signature is now expired and I need to sign it again. The client has bought…
user1066568
  • 717
  • 3
  • 15
  • 32
1
vote
1 answer

applet in Java7 not working after signing jar

We used to have an applet in an Alfresco application which was build and compiled in Java 6. since our systems needed to update to Java7 JVM the applet launch started to show all those anoying security messages and it was quite a pain for our users.…
user3629362
  • 11
  • 1
  • 4
1
vote
2 answers

How do I use multiple jars in a signed applet?

I have an existing signed applet that, among other things, reads a directory of image files, then loads them and resizes them and uploads them. It has worked great for years but now I need to add Tiff image support. The only way I found to do that…
mindcross
  • 11
  • 1
1
vote
0 answers

ExceptionInInitializerError, AccessControlException , Unknown publishers Security warning,

i can't understand where problem lies to run applet in browser when deploy my project accordind to http://docs.oracle.com/javase/tutorial/deployment/applet/deployingApplet.html jar manifest code Permissions:…
Attif
  • 1,158
  • 13
  • 17
1
vote
1 answer

Signed applet w/ signed JNLP template produces java.lang.SecurityException

I'm signing the JNLP file used by my RIA, in preparation for the coming tighter security restrictions in 7u51, due in January. The webstart version is working great, but I've run into a problem where the applet version fails to launch with the…
Matt McHenry
  • 20,009
  • 8
  • 65
  • 64
1
vote
2 answers

getting UNKNOWN publisher warning message for java applets

recently I have upgraded to jre 1..7.45b18 and started getting the security popup saying Do you want to run this application Publisher: UNKNOWN Running applications by UNKNOWN publishers will be blocked in a future release because it is potentially…
java1977
  • 398
  • 4
  • 12
  • 25
1
vote
2 answers

Signed applet still shows the UNKNOWN publisher

I got a code-signing certificate from Thawte. I imported it with private key into the keystore (jks type). Then I successfully signed my applet using this certificate. BUT when I show the page with my signed applet it still shows the UNKNOWN…
stepand76
  • 467
  • 6
  • 17
1
vote
1 answer

Getting the "always trust" on web app in java 8

Currently I have javafx apps embedded in a webpage for presentation, and for some run-time bugs, i need to use Java 8 jre. And in Java 8, the option to "always trust from this publisher" no longer exist, and the pop up will always appear for…
3v01
  • 39
  • 2
  • 8
1 2 3
8 9