aspose file tools
The moose likes Architect Certification (SCEA/OCMJEA) and the fly likes Two questions about applet security Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Certification » Architect Certification (SCEA/OCMJEA)
Reply Bookmark "Two questions about applet security" Watch "Two questions about applet security" New topic
Author

Two questions about applet security

Leo Liao
Greenhorn

Joined: Jun 20, 2003
Posts: 15
I have two questions about applet security.
1. Can an unsigned JAR be trusted by Java Plugin?
2. A JAR is signed. If I add/delete/modify some files to/from/in it, can it stilly be verified?
Thanks.
sowmya thiru
Greenhorn

Joined: Jun 09, 2003
Posts: 19
for applet to be trusted.
it HAS TO BE Digitally signed.
unsigned applet is NOT TRUSTED
if a signed jar is modified, it can be verified..but verification process will fail ..data integreity check is done by public/private key algo
Leo Liao
Greenhorn

Joined: Jun 20, 2003
Posts: 15
What do you mean "verification process will fail"?
Do you mean if I use "jarsigner -verify a.jar", some failure infomation will appear?
sowmya thiru
Greenhorn

Joined: Jun 09, 2003
Posts: 19
For example, if someone has exploded a signed JAR file, has modified
one of its files, and has rebuilt the JAR file, when we try to verify the
signature using jarsigner, we get the following error message:

jarsigner: java.lang.SecurityException: SHA1 digest error for
itso.class
Leo Liao
Greenhorn

Joined: Jun 20, 2003
Posts: 15
Originally posted by sowmya thiru:
For example, if someone has exploded a signed JAR file, has modified
one of its files, and has rebuilt the JAR file, when we try to verify the
signature using jarsigner, we get the following error message:

jarsigner: java.lang.SecurityException: SHA1 digest error for
itso.class

That's true.
But if I ADD or DELETE files in the JAR, the verification still succeeds.
Juan Rolando Prieur-Reza
Ranch Hand

Joined: Jun 20, 2003
Posts: 233
Originally posted by Leo Liao:

But if I ADD or DELETE files in the JAR, the verification still succeeds.

I believe the signature is on a per-file bases (files in the Jar).
Any files that are unchanged after signing the JAR should still verify
successfully even if other files were added or deleted.
The added files would not verify unless the Jar is signed again after the Add. (I'm too lazy to try this out, however.


Juan Rolando Prieur-Reza, M.S., LSSBB, SCEA, SCBCD, SCWCD, SCJP/1.6, IBM OOAD, SCSA
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Two questions about applet security
 
Similar Threads
With a great struggle I passed part 1 finally.
SSL and Security basic questions
Security and Applet Security
Applet Code Management
singed applets (are policy files needed)