Desativar prompts de segurança do Java 8 update 20

6

A atualização 20 da versão 8 do Java introduziu uma etapa tediosa de ter que verificar se um applet é legítimo através de uma série complicada de etapas. A Oracle diz isso sobre isso:

Medium (removed from Java 8 Update 20 and later versions) </br>
Only unsigned applications that request all permissions are blocked. All
other applications are allowed to run with security prompts. Selecting
the Medium security level is not recommended and will make your
computer more vulnerable should you run a malicious application.

Como obtenho o antigo comportamento de volta?

Ou seja, como posso executar um applet Java ( IcedTea ) sem ter que seguir as etapas abaixo.

    
por Claris 03.10.2014 / 07:19

1 resposta

6

Como faço para controlar quando um applet ou aplicativo não confiável é executado no meu navegador da Web?

Starting with Java 8 Update 20, the Medium security level has been removed from the Java Control Panel. Only High and Very High levels are available.

The exception site list provides users with the option of allowing the same applets that would have been allowed by selecting the Medium option but on a site-by-site basis therefore minimizing the risk of using more permissive settings.

Origem Como faço para controlar quando um applet ou aplicativo não confiável é executado no navegador da web?

Como posso configurar a lista de sites de exceção?

The Exception Site List feature is being introduced in the release of Java 7 Update 51. By adding application URL to the Exception list allows users to run Rich Internet Applications (RIAs) that would normally be blocked by security checks.

Listed below are cases which will allow applications to run by adding the application url to the exception site list:

  • If application is not signed with a certificate from trusted certificate authority.
  • If application is hosted locally.
  • Jar file not having the Permission manifest attribute. Application signed with an expired certificate. Certificate used to sign the application cannot be checked for revocation.

Manage the Exception Site List

The exception site list is managed in the Security tab of the Java Control Panel. The list is shown in the tab. To add, edit or remove a URL from list, Click Edit Site List and follow the directions shown. Add a URL

  • Click on the Edit Site List button.
  • Click the Add in the Exception Site List window.
  • Click in the empty field under Location field to enter the URL.
  • Example: http://myexample.com (Note: URL should begin with http:// or https://)
  • Click OK to save the URL that you entered.
  • Click Continue on the Security Warning dialog.

Edit a URL

  • Double click the URL that you want to edit in the Exception Site List window.
  • Make change to the URL.
  • Click OK to save the changes.

Remove a URL

  • Click the URL that you want to remove in the Exception Site List window.
  • Click Remove.
  • Click OK to save your change.

Fonte Como posso configurar a Lista de sites de exceção?

Depois de adicionar o site à lista de sites de exceção, talvez seja necessário reiniciar seu navegador.

    
por 03.10.2014 / 10:53

Tags