Execute applets Java não assinados

7

Basicamente, a mesma pergunta que Permitindo aplicativos Java não assinados em todos os sites , mas para o Java 8, onde tenho o prazer de ver esta tela:

Não é novidade que isso quebra as coisas para mim. Existe alguma maneira de contornar essa decisão ridícula além de instalar o Java 7?

    
por user60561 09.09.2014 / 03:16

2 respostas

2

Referência Como posso controlar quando um applet ou aplicativo não confiável é executado no 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.

Talvez seja necessário reiniciar o navegador para que as configurações entrem em vigor.

    
por 09.09.2014 / 08:54
0

Eu sei que você está procurando por unsigned, mas eu tive problemas com a execução de um aplicativo assinado com o MD5 com o RSA. Eu descobri que a solução a seguir funcionou para mim, talvez você possa começar a seguir o caminho certo:

De link :

all applications signed by MD5withRSA are now treated by "unapproved"

but luckily you can quickly override this by updating C:\Program Files (x86)\Java\jre1.8.0_131\lib\security\java.security

i've opened java.security file with notepad and made next few changes (removed MD5 exclusion):

jdk.jar.disabledAlgorithms=MD2, RSA keySize < 1024

jdk.tls.disabledAlgorithms=SSLv3, RC4, DH keySize < 768, \ EC keySize < 224

jdk.tls.legacyAlgorithms= \ K_NULL, C_NULL, M_NULL, \ DHE_DSS_EXPORT, DHE_RSA_EXPORT, DH_anon_EXPORT, DH_DSS_EXPORT, \ DH_RSA_EXPORT, RSA_EXPORT, \ DH_anon, ECDH_anon, \ RC4_128, RC4_40, DES_CBC, DES40_CBC, \ 3DES_EDE_CBC, \ SSL_RSA_WITH_RC4_128_MD5

ig.secureValidationPolicy=\ disallowAlg http://www.w3.org/TR/1999/REC-xslt-19991116,\ disallowAlg http://www.w3.org/2001/04/xmldsig-more#hmac-md5,\ disallowAlg http://www.w3.org/2001/04/xmldsig-more#md5,\ maxTransforms 5,\ maxReferences 30,\ disallowReferenceUriSchemes file http https,\ minKeySize RSA 1024,\ minKeySize DSA 1024,\ noDuplicateIds,\ noRetrievalMethodLoops

    
por 09.05.2017 / 13:07