I made a weird applet which allows you to paint with your voice. Obviously it requires access to the microphone, but Java applets are not allowed access unless they are signed. As far as I can tell its difficult and involves cryptography, and, though its not clear, I think that I'm expected to pay MONEY to Verisign as well. This all seems like a lot of paranoid innovation stifling bullsh** to me and I figure I'm not the first person to think so.

Is there just some way to bypass this "for educational or testing purposes?" or maybe turn off the security in my browser? or sign the applet for free?

I'm on Ubuntu 9.04 with Firefox 3.0.15 and Java 1.6.0

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

Here's a 3-step tutorial to do it.

link|improve this answer
This does not work. With Firefox, at least, you get two warning dialogs, but even if you allow the applet to run, it is not granted any additional privileges over an unsigned applet. – LaC Nov 1 '11 at 9:21
I have used it and I think it worked. It was a long time ago though. – Bozho Nov 1 '11 at 9:26
I think Oracle might have tightened the security settings of Java. – LaC Nov 1 '11 at 9:35
feedback

You can create a self-signed certificate using the Java keytool. It's sufficient for educational or testing purposes, but if you deploy code signed with it, people are unlikely to trust it.

I think Thawte used to offer a free e-mail signing certificate that could also be used for signing code. I'm not sure if that is still the case.

link|improve this answer
1  
You meant people are likely to trust it. Seriously, most users don't read the over encumbered "do you want to trust" dialog, they just press whatever button is nearest to the cursor. – Ran Biron Dec 7 '09 at 2:00
Somebody should make a testing program that does that. – Nathan Aug 9 '10 at 19:27
feedback

You may go one step further and setup your own CA with OpenSSL.

This will allow you to create your own root certificate and generate any number of signing or SSL sertificates. You may then distribute your root certificate to your friends and ask them to install it in their respective browsers. After that the certificate chain for certificates create by your CA will always be valid and not self-signed ( many browsers look down on self-signed certs ).

If you are going to work with OpenSSL CA you may need pkeytool to import private key into java keystore file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.