• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Applet Security

 
Ranch Hand
Posts: 51
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

If an applet is signed but the usePolicy is not defined in the java.policy, will the user be prompted to allow all permissions to be granted to the applet or will this be done without prompting the user

Thanks
Joe
 
Saloon Keeper
Posts: 7590
177
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A signed applet has all permissions, regardless what any policy says. Once the applet certificate is accepted by the user, no further checks will be done.
 
Ranch Hand
Posts: 180
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That's not entirely true, a signed applets doesnt have necessary all the permissions. Signed applet just means it is a trusted code and can run outside the sandbox.
However the trusted code still has to comply to the rules defined in the security manager in the JVM, if it doent the operation will just be denied.
An exception is thrown, the user is not prompted.
 
Joe O'Toole
Ranch Hand
Posts: 51
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks!

1 other question on this. If an applet is not signed but loaded from local directory it runs outside of the sandbox, right?
 
reply
    Bookmark Topic Watch Topic
  • New Topic