Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 20th, 2012  |  syntax: None  |  size: 0.40 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Detect if browser has TLS enabled
  2. SSLCipherSuite !aNULL:!eNULL:!EXPORT:!DSS:!DES:!SSLv2:RC4-SHA:RC4-MD5:ALL
  3. SSLHonorCipherOrder on
  4.        
  5. (function(){
  6. var key = "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\SecureProtocols";
  7. var t = document.getElementById("detectREG_output");
  8. var Shell = new ActiveXObject("WScript.Shell");
  9. var value = Shell.RegRead(key);
  10. t.innerHTML = value;
  11. })();