{"id":70,"date":"2019-08-06T12:19:57","date_gmt":"2019-08-06T11:19:57","guid":{"rendered":"https:\/\/www.syslab.network\/?page_id=70"},"modified":"2019-09-24T12:22:14","modified_gmt":"2019-09-24T11:22:14","slug":"ie-ssl-tls","status":"publish","type":"page","link":"https:\/\/www.syslab.network\/index.php\/vbscripts\/internet-explorer\/ie-ssl-tls\/","title":{"rendered":"IE SSL \/ TLS"},"content":{"rendered":"<div class=\"post-content\"><div id=\"ccchildpages-1\" class=\"ccchildpages fourcol simple ccclearfix\"><ul class=\"ccchildpages_list ccclearfix\"><li class=\"page_item page-item-36\"><a href=\"https:\/\/www.syslab.network\/index.php\/vbscripts\/internet-explorer\/internet-explorer-exceptions-trusted-sites\/\">IE Exceptions (Trusted Sites)<\/a><\/li>\n<li class=\"page_item page-item-65\"><a href=\"https:\/\/www.syslab.network\/index.php\/vbscripts\/internet-explorer\/ie-exceptions-privacy\/\">IE Exceptions (Privacy)<\/a><\/li>\n<li class=\"page_item page-item-84\"><a href=\"https:\/\/www.syslab.network\/index.php\/vbscripts\/internet-explorer\/ie-compatibility-view\/\">IE Compatibility View<\/a><\/li>\n<li class=\"page_item page-item-129\"><a href=\"https:\/\/www.syslab.network\/index.php\/vbscripts\/internet-explorer\/ie-proxy\/\">IE Proxy<\/a><\/li><\/ul><\/div>\n\n\n\n<p> This post is the continuation of IE Exceptions Trusted Sites and IE Exceptions Privacy<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img loading=\"lazy\" width=\"410\" height=\"539\" src=\"https:\/\/www.syslab.network\/wp-content\/uploads\/2019\/08\/SSL.png\" alt=\"\" class=\"wp-image-40\" srcset=\"https:\/\/www.syslab.network\/wp-content\/uploads\/2019\/08\/SSL.png 410w, https:\/\/www.syslab.network\/wp-content\/uploads\/2019\/08\/SSL-228x300.png 228w, https:\/\/www.syslab.network\/wp-content\/uploads\/2019\/08\/SSL-100x131.png 100w, https:\/\/www.syslab.network\/wp-content\/uploads\/2019\/08\/SSL-150x197.png 150w, https:\/\/www.syslab.network\/wp-content\/uploads\/2019\/08\/SSL-200x263.png 200w, https:\/\/www.syslab.network\/wp-content\/uploads\/2019\/08\/SSL-300x394.png 300w\" sizes=\"(max-width: 410px) 100vw, 410px\" \/><\/figure><\/div>\n\n\n\n<p> The value for this key should be calculated as needed, for this example we will activate SSL 3.0, TLS 1.0, TLS 1.1, TLS 1.2<\/p>\n\n\n\n<pre class=\"wp-block-verse\">Note: One of the last updates of Internet Explorer add a new option TLS 1.3 <\/pre>\n\n\n\n<table class=\"wp-block-table aligncenter is-style-stripes\"><tbody><tr><td> DefaultSecureProtocols Value <\/td><td> Protocol enabled <\/td><\/tr><tr><td> 0x00000008 <\/td><td> Enable SSL 2.0 by default <\/td><\/tr><tr><td> 0x00000020 <\/td><td> Enable SSL 3.0 by default <\/td><\/tr><tr><td> 0x00000080 <\/td><td> Enable TLS 1.0 by default <\/td><\/tr><tr><td> 0x00000200 <\/td><td> Enable TLS 1.1 by default <\/td><\/tr><tr><td> 0x00000800 <\/td><td> Enable TLS 1.2 by default <\/td><\/tr><\/tbody><\/table>\n\n\n\n<p>For our example<\/p>\n\n\n\n<p>8 + 20 + 80 + 200 + 800 = AA8 Hex = 2728 Dec<\/p>\n\n\n\n<p>Path in registry<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror cm-s-blackboard\" data-setting=\"{&quot;mode&quot;:&quot;vbscript&quot;,&quot;mime&quot;:&quot;text\/vbscript&quot;,&quot;theme&quot;:&quot;blackboard&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;language&quot;:&quot;VBScript&quot;,&quot;modeName&quot;:&quot;vb&quot;}\">strRegKey = &quot;HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\SecureProtocols&quot;<\/pre><\/div>\n\n\n\n<p>Key to add<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror cm-s-blackboard\" data-setting=\"{&quot;mode&quot;:&quot;vbscript&quot;,&quot;mime&quot;:&quot;text\/vbscript&quot;,&quot;theme&quot;:&quot;blackboard&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;language&quot;:&quot;VBScript&quot;,&quot;modeName&quot;:&quot;vb&quot;}\">WshShell.RegWrite strRegKey, 2728, &quot;REG_DWORD&quot;<\/pre><\/div>\n\n\n\n<h3>Script Trusted Sites + Privacy + SSL \/ TLS<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror cm-s-blackboard\" data-setting=\"{&quot;mode&quot;:&quot;vbscript&quot;,&quot;mime&quot;:&quot;text\/vbscript&quot;,&quot;theme&quot;:&quot;blackboard&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;language&quot;:&quot;VBScript&quot;,&quot;modeName&quot;:&quot;vb&quot;}\">Exception &quot;192.168.100.100&quot;\nException &quot;192.168.100.101&quot; \n\nFunction Exception(Site) \n\n  Set WshShell = Wscript.CreateObject(&quot;Wscript.Shell&quot;) \n\n'------Trusted Sites------'\n\n    strRegKey = &quot;HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Ranges\\&quot;\n\n\t WshShell.RegWrite strRegKey &amp; Site &amp; &quot;\\&quot; ,&quot;&quot; , &quot;REG_SZ&quot;\n\n   \t WshShell.RegWrite strRegKey &amp; Site &amp; &quot;\\&quot; &amp; &quot;:Range&quot; , Site, &quot;REG_SZ&quot;\n\n   \t WshShell.RegWrite strRegKey &amp; Site &amp; &quot;\\*&quot;, &quot;2&quot;, &quot;REG_DWORD&quot;\n\n'------Privacy------'\n\n    strRegKey = &quot;HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\P3P\\History\\&quot; \n   \n     WshShell.RegWrite strRegKey &amp; Site &amp; &quot;\\&quot;, 1, &quot;REG_DWORD&quot; \n\t\n    strRegKey = &quot;HKCU\\Software\\Microsoft\\Internet Explorer\\New Windows\\Allow\\&quot;\n\t\n     WshShell.RegWrite strRegKey &amp; Site, 0, &quot;REG_BINARY&quot;\n\n'------SSL\/TLS------'\n\n    strRegKey = &quot;HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\SecureProtocols&quot;\n\t\n     WshShell.RegWrite strRegKey, 2728, &quot;REG_DWORD&quot;\n\nEnd Function<\/pre><\/div>\n\n\n<div id=\"ccchildpages-2\" class=\"ccchildpages fourcol simple ccclearfix\"><ul class=\"ccchildpages_list ccclearfix\"><li class=\"page_item page-item-36\"><a href=\"https:\/\/www.syslab.network\/index.php\/vbscripts\/internet-explorer\/internet-explorer-exceptions-trusted-sites\/\">IE Exceptions (Trusted Sites)<\/a><\/li>\n<li class=\"page_item page-item-65\"><a href=\"https:\/\/www.syslab.network\/index.php\/vbscripts\/internet-explorer\/ie-exceptions-privacy\/\">IE Exceptions (Privacy)<\/a><\/li>\n<li class=\"page_item page-item-84\"><a href=\"https:\/\/www.syslab.network\/index.php\/vbscripts\/internet-explorer\/ie-compatibility-view\/\">IE Compatibility View<\/a><\/li>\n<li class=\"page_item page-item-129\"><a href=\"https:\/\/www.syslab.network\/index.php\/vbscripts\/internet-explorer\/ie-proxy\/\">IE Proxy<\/a><\/li><\/ul><\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>This post is the continuation of IE Exceptions Trusted Sites<a href=\"https:\/\/www.syslab.network\/index.php\/vbscripts\/internet-explorer\/ie-ssl-tls\/\">Read More<i class=\"fa fa-long-arrow-right\" aria-hidden=\"true\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":95,"parent":56,"menu_order":0,"comment_status":"open","ping_status":"open","template":"","meta":{"_mi_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0},"_links":{"self":[{"href":"https:\/\/www.syslab.network\/index.php\/wp-json\/wp\/v2\/pages\/70"}],"collection":[{"href":"https:\/\/www.syslab.network\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.syslab.network\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.syslab.network\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.syslab.network\/index.php\/wp-json\/wp\/v2\/comments?post=70"}],"version-history":[{"count":6,"href":"https:\/\/www.syslab.network\/index.php\/wp-json\/wp\/v2\/pages\/70\/revisions"}],"predecessor-version":[{"id":341,"href":"https:\/\/www.syslab.network\/index.php\/wp-json\/wp\/v2\/pages\/70\/revisions\/341"}],"up":[{"embeddable":true,"href":"https:\/\/www.syslab.network\/index.php\/wp-json\/wp\/v2\/pages\/56"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.syslab.network\/index.php\/wp-json\/wp\/v2\/media\/95"}],"wp:attachment":[{"href":"https:\/\/www.syslab.network\/index.php\/wp-json\/wp\/v2\/media?parent=70"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}