<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Gaia Portal SSL cipher suites in General Topics</title>
    <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/209369#M34680</link>
    <description>&lt;P&gt;Does this fix of the cypher suites apply to a R77.30?&lt;BR /&gt;I know it is old and I an trying to push a new box in, but untill then.&lt;/P&gt;</description>
    <pubDate>Thu, 21 Mar 2024 08:11:50 GMT</pubDate>
    <dc:creator>CPnoob</dc:creator>
    <dc:date>2024-03-21T08:11:50Z</dc:date>
    <item>
      <title>Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/152037#M26150</link>
      <description>&lt;P&gt;&lt;SPAN&gt;sk147272 currently is the suggested procedure to remove vulnerable ssl ciphers and protocols. The&amp;nbsp;sk120774 and sk111307 does a reboot instead of the final steps, sk163542 only shows the current status and&amp;nbsp;sk126613 is using the cipher tool that only works with MultiPortal enabled. I have summed up information from several source to get it discussed here:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;1. First, see the active ciphers:&lt;/P&gt;
&lt;P&gt;more /web/templates/httpd-ssl.conf.templ | grep SSLCipherSuite&lt;BR /&gt;SSLCipherSuite HIGH:!RC4:!LOW:!EXP:!aNULL:!SSLv2:!MD5&lt;/P&gt;
&lt;P&gt;2. So we know how to ask for TLS versions:&lt;/P&gt;
&lt;P&gt;cpopenssl ciphers -v 'HIGH:!RC4:!LOW:!EXP:!aNULL:!SSLv2:!MD5' | grep -i tls | awk '{print $2}' | sort --unique&lt;BR /&gt;TLSv1&lt;BR /&gt;TLSv1.2&lt;BR /&gt;TLSv1.3&lt;/P&gt;
&lt;P&gt;After a backup of the original template file:&lt;/P&gt;
&lt;P&gt;[Expert@HostName:0]# cp /web/templates/httpd-ssl.conf.templ /web/templates/httpd-ssl.conf.templ_ORIGINAL&lt;/P&gt;
&lt;P&gt;3. Assign the 'write' permission to the current /web/templates/httpd-ssl.conf.templ file:&lt;/P&gt;
&lt;P&gt;[Expert@HostName:0]# ls -l /web/templates/httpd-ssl.conf.templ&lt;/P&gt;
&lt;P&gt;[Expert@HostName:0]# chmod u+w /web/templates/httpd-ssl.conf.templ&lt;/P&gt;
&lt;P&gt;[Expert@HostName:0]# ls -l /web/templates/httpd-ssl.conf.templ&lt;/P&gt;
&lt;P&gt;4. Edit the current /web/templates/httpd-ssl.conf.templ file:&lt;/P&gt;
&lt;P&gt;[Expert@HostName:0]# vi /web/templates/httpd-ssl.conf.templ&lt;/P&gt;
&lt;P&gt;5. In the section, change:&lt;/P&gt;
&lt;P&gt;from:&lt;/P&gt;
&lt;P&gt;# SSL Cipher Suite:&lt;/P&gt;
&lt;P&gt;# List the ciphers that the client is permitted to negotiate.&lt;/P&gt;
&lt;P&gt;# See the mod_ssl documentation for a complete list.&lt;/P&gt;
&lt;P&gt;SSLCipherSuite HIGH:!RC4:!LOW:!EXP:!aNULL:!SSLv2:!MD5&lt;/P&gt;
&lt;P&gt;To:&lt;/P&gt;
&lt;P&gt;# SSL Cipher Suite:&lt;/P&gt;
&lt;P&gt;# List the ciphers that the client is permitted to negotiate.&lt;/P&gt;
&lt;P&gt;# See the mod_ssl documentation for a complete list.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;(from sk147272 - used in the following parts):&amp;nbsp;&lt;/STRONG&gt;SSLCipherSuite ECDHE-RSA-AES256-SHA384:AES256-SHA256:!ADH:!EXP:RSA:+HIGH:+MEDIUM:!MD5:!LOW:!NULL:!SSLv2:!eNULL:!aNULL:!RC4:!SHA1&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;(from sk120774):&amp;nbsp;&lt;/STRONG&gt;SSLCipherSuite ECDH:!aNULL:!ECDSA:!aECDH:!eNULL:!MD5:!SHA1&lt;/P&gt;
&lt;P&gt;Notes:&lt;/P&gt;
&lt;P&gt;see the active ciphers:&lt;/P&gt;
&lt;P&gt;more /web/templates/httpd-ssl.conf.templ | grep SSLCipherSuite&lt;BR /&gt;SSLCipherSuite ECDHE-RSA-AES256-SHA384:AES256-SHA256:!ADH:!EXP:RSA:+HIGH:+MEDIUM:!MD5:!LOW:!NULL:!SSLv2:!eNULL:!aNULL:!RC4:!SHA1&lt;/P&gt;
&lt;P&gt;[Expert@HostName:0]# cpopenssl ciphers -v 'ECDHE-RSA-AES256-SHA384:AES256-SHA256:!ADH:!EXP:RSA:+HIGH:+MEDIUM:!MD5:!LOW:!NULL:!SSLv2:!eNULL:!aNULL:!RC4:!SHA1' | grep -i tls | awk '{print $2}' | sort --unique&lt;BR /&gt;TLSv1.2&lt;BR /&gt;TLSv1.3&lt;/P&gt;
&lt;P&gt;Remove the 'write' permission from the /web/templates/httpd-ssl.conf.templ file:&lt;/P&gt;
&lt;P&gt;[Expert@HostName:0]# chmod -v u-w /web/templates/httpd-ssl.conf.templ&lt;/P&gt;
&lt;P&gt;9. Update the current configuration of the HTTPD daemon based on the modified configuration template:&lt;/P&gt;
&lt;P&gt;[Expert@HostName:0]# /bin/template_xlate : /web/templates/httpd-ssl.conf.templ /web/conf/extra/httpd-ssl.conf &amp;lt; /config/active&lt;/P&gt;
&lt;P&gt;10. Restart the HTTPD daemon:&lt;/P&gt;
&lt;P&gt;[Expert@HostName:0]# tellpm process:httpd2&lt;/P&gt;
&lt;P&gt;[Expert@HostName:0]# tellpm process:httpd2 t&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2022 08:19:33 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/152037#M26150</guid>
      <dc:creator>G_W_Albrecht</dc:creator>
      <dc:date>2022-06-30T08:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/152039#M26151</link>
      <description>&lt;P&gt;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/21294"&gt;@G_W_Albrecht&lt;/a&gt; , I suppose it'll work on SMS as well.&lt;/P&gt;
&lt;P&gt;Did you try running cipher_util afterwards to see if its output matching your modifications?&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Vladimir&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 14:40:17 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/152039#M26151</guid>
      <dc:creator>Vladimir</dc:creator>
      <dc:date>2022-06-29T14:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/152103#M26165</link>
      <description>&lt;P&gt;Yes, this is for GW or SMS. On GW, cipher_util works and shows:&lt;/P&gt;
&lt;PRE&gt;Enabled:&lt;BR /&gt;&lt;BR /&gt;TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384&lt;BR /&gt;TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256&lt;BR /&gt;TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384&lt;BR /&gt;TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256&lt;BR /&gt;TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384&lt;BR /&gt;TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256&lt;BR /&gt;TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384&lt;BR /&gt;TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256&lt;BR /&gt;TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256&lt;BR /&gt;TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256&lt;BR /&gt;&lt;BR /&gt;Disabled:&lt;BR /&gt;TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA&lt;BR /&gt;TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA&lt;BR /&gt;TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA&lt;BR /&gt;TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA&lt;BR /&gt;TLS_RSA_WITH_3DES_EDE_CBC_SHA&lt;BR /&gt;TLS_RSA_WITH_AES_128_CBC_SHA&lt;BR /&gt;TLS_RSA_WITH_AES_128_CBC_SHA256&lt;BR /&gt;TLS_RSA_WITH_AES_128_GCM_SHA256&lt;BR /&gt;TLS_RSA_WITH_AES_256_CBC_SHA&lt;BR /&gt;TLS_RSA_WITH_AES_256_CBC_SHA256&lt;BR /&gt;TLS_RSA_WITH_AES_256_GCM_SHA384&lt;BR /&gt;TLS_RSA_WITH_RC4_128_MD5&lt;BR /&gt;TLS_RSA_WITH_RC4_128_SHA&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2022 08:24:54 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/152103#M26165</guid>
      <dc:creator>G_W_Albrecht</dc:creator>
      <dc:date>2022-06-30T08:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/152129#M26166</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2022 13:56:20 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/152129#M26166</guid>
      <dc:creator>Vladimir</dc:creator>
      <dc:date>2022-06-30T13:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/152130#M26167</link>
      <description>&lt;P&gt;What puzzles me is the difference here:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;(from sk147272):&amp;nbsp;&lt;/STRONG&gt;SSLCipherSuite ECDHE-RSA-AES256-SHA384:AES256-SHA256:!ADH:!EXP:RSA:+HIGH:+MEDIUM:!MD5:!LOW:!NULL:!SSLv2:!eNULL:!aNULL:!RC4:!SHA1&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;(from sk120774):&amp;nbsp;&lt;/STRONG&gt;SSLCipherSuite ECDH:!aNULL:!ECDSA:!aECDH:!eNULL:!MD5:!SHA1&lt;/P&gt;
&lt;P&gt;What about no Medium:&lt;/P&gt;
&lt;P&gt;SSLCipherSuite ECDHE-RSA-AES256-SHA384:AES256-SHA256:!ADH:!EXP:RSA:+HIGH:!MEDIUM:!MD5:!LOW:!NULL:!SSLv2:!eNULL:!aNULL:!RC4:!SHA1&lt;/P&gt;
&lt;P&gt;Anyone found a link to mod_ssl syntax not from 2001 ?&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2022 14:01:33 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/152130#M26167</guid>
      <dc:creator>G_W_Albrecht</dc:creator>
      <dc:date>2022-06-30T14:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/152137#M26168</link>
      <description>&lt;P&gt;I was not looking at it specifically, but let's loop in&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/7"&gt;@PhoneBoy&lt;/a&gt; to see if he knows...&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2022 17:25:33 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/152137#M26168</guid>
      <dc:creator>Vladimir</dc:creator>
      <dc:date>2022-06-30T17:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/152164#M26169</link>
      <description>&lt;P&gt;I found it here:&amp;nbsp;&lt;A href="https://httpd.apache.org/docs/current/mod/mod_ssl.html" target="_blank" rel="noopener"&gt;https://httpd.apache.org/docs/current/mod/mod_ssl.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The interesting part:&lt;/P&gt;
&lt;TABLE class="bordered"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD colspan="2"&gt;&lt;EM&gt;Aliases:&lt;/EM&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;SSLv3&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all SSL version 3.0 ciphers&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;TLSv1&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all TLS version 1.0 ciphers&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;EXP&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all export ciphers&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;EXPORT40&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all 40-bit export ciphers only&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;EXPORT56&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all 56-bit export ciphers only&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;LOW&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all low strength ciphers (no export, single DES)&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;MEDIUM&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all ciphers with 128 bit encryption&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;HIGH&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all ciphers using Triple-DES&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;RSA&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all ciphers using RSA key exchange&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;DH&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all ciphers using Diffie-Hellman key exchange&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;EDH&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all ciphers using Ephemeral Diffie-Hellman key exchange&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;ECDH&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;Elliptic Curve Diffie-Hellman key exchange&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;ADH&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all ciphers using Anonymous Diffie-Hellman key exchange&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;AECDH&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all ciphers using Anonymous Elliptic Curve Diffie-Hellman key exchange&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;SRP&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all ciphers using Secure Remote Password (SRP) key exchange&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;DSS&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all ciphers using DSS authentication&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;ECDSA&lt;/CODE&gt;&lt;/TD&gt;
&lt;TD&gt;all ciphers using ECDSA authentication&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So combining both from above excluding 128 bit encryption would read:&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;SSLCipherSuite ECDHE-RSA-AES256-SHA384:AES256-SHA256:RSA:+HIGH:!ADH:!EXP:!ECDSA:!aECDH:!MEDIUM:!MD5:!LOW:!NULL:!SSLv2:!eNULL:!aNULL:!RC4:!SHA1&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2022 09:02:46 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/152164#M26169</guid>
      <dc:creator>G_W_Albrecht</dc:creator>
      <dc:date>2022-07-01T09:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/156494#M26550</link>
      <description>&lt;P&gt;If I only enabled these 2 ciphers, I am not able to open the Gaia portal.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;- ECDHE-ECDSA-AES256-GCM-SHA384&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- ECDHE-ECDSA-AES128-GCM-SHA256&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Is there anything that I missed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2022 09:42:03 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/156494#M26550</guid>
      <dc:creator>just13pro</dc:creator>
      <dc:date>2022-09-05T09:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/156505#M26551</link>
      <description>&lt;P&gt;R81.10 has changed the TLS switch and &lt;SPAN&gt;sk147272 now has&lt;/SPAN&gt;:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;WARNING:&lt;/STRONG&gt;&lt;SPAN&gt; This configuration change is &lt;/SPAN&gt;&lt;STRONG&gt;NOT COMPATIBLE with R81.10 and newer releases&lt;/STRONG&gt;&lt;SPAN&gt;. &amp;nbsp; Performing step 6 above on an R81.10 system will result in management API failure to start. &amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;R81.10 comes out of the box with TLS 1.2 as the lowest enabled TLS version.&amp;nbsp; On R81.10 and newer, please use the &lt;/SPAN&gt;&lt;EM&gt;clish &lt;/EM&gt;&lt;SPAN&gt;command to change the supported TLS version: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;HOST&amp;gt; set ssl tls TLSv1.3 on&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;HOST&amp;gt; set ssl tls TLSv1.2 off&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;HOST&amp;gt; save config&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;HOST&amp;gt;&lt;/SPAN&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2022 11:26:21 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/156505#M26551</guid>
      <dc:creator>G_W_Albrecht</dc:creator>
      <dc:date>2022-09-05T11:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/156507#M26552</link>
      <description>&lt;P&gt;Maybe you GAiA Portal Cert is SHA-1 from an old installation, see&amp;nbsp;&lt;SPAN&gt;sk108252 ?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2022 11:46:00 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/156507#M26552</guid>
      <dc:creator>G_W_Albrecht</dc:creator>
      <dc:date>2022-09-05T11:46:00Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/163614#M27325</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;I have a Cloudguard VMSS in Azure, I would like to remove vulnerable cipher suites (as shown in sk147272) for new provisioned GWs in case of Scale Out via CME.&lt;/SPAN&gt; &lt;SPAN&gt;Do you have any idea how to do it please?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;my cloudguards VMSS are in R81.10&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 20:25:32 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/163614#M27325</guid>
      <dc:creator>Maher</dc:creator>
      <dc:date>2022-11-29T20:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/163684#M27355</link>
      <description>&lt;P&gt;No.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 10:46:47 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/163684#M27355</guid>
      <dc:creator>G_W_Albrecht</dc:creator>
      <dc:date>2022-11-30T10:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/164359#M27426</link>
      <description>&lt;P&gt;It is possible to create a bash script that implements the configurations from the SK and configure it to run on every scaled-out instance.&lt;/P&gt;
&lt;P&gt;Please refer to the CME Admin Guide here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://sc1.checkpoint.com/documents/IaaS/WebAdminGuides/EN/CP_CME/Content/Topics-CME/CME_Structure_and_Configurations.htm?Highlight=custom%20script" target="_blank"&gt;https://sc1.checkpoint.com/documents/IaaS/WebAdminGuides/EN/CP_CME/Content/Topics-CME/CME_Structure_and_Configurations.htm?Highlight=custom%20script&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Under "Supported Configuration Template parameters", argument "&lt;SPAN class="SearchHighlight SearchHighlight1"&gt;CUSTOM&lt;/SPAN&gt;&lt;SPAN&gt;_GATEWAY_&lt;/SPAN&gt;&lt;SPAN class="SearchHighlight SearchHighlight2"&gt;SCRIPT".&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="SearchHighlight SearchHighlight2"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="SearchHighlight SearchHighlight2"&gt;Dmitry&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 17:10:56 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/164359#M27426</guid>
      <dc:creator>Dmitry_Gorn</dc:creator>
      <dc:date>2022-12-06T17:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/203240#M33807</link>
      <description>&lt;P&gt;Are there scenarios where this "manual disabling of TLSv1.x" is needed even after &lt;SPAN&gt;sk154532 is applied where&amp;nbsp;&lt;STRONG&gt;snx_ssl_min_ver&lt;/STRONG&gt; has already been set to TLS1.2?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jan 2024 15:21:13 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/203240#M33807</guid>
      <dc:creator>Robin_H</dc:creator>
      <dc:date>2024-01-16T15:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/209369#M34680</link>
      <description>&lt;P&gt;Does this fix of the cypher suites apply to a R77.30?&lt;BR /&gt;I know it is old and I an trying to push a new box in, but untill then.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2024 08:11:50 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/209369#M34680</guid>
      <dc:creator>CPnoob</dc:creator>
      <dc:date>2024-03-21T08:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/209383#M34681</link>
      <description>&lt;P&gt;I do not know of such scenarios nor why they should exist, so you would have to look for yourself...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2024 09:48:43 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/209383#M34681</guid>
      <dc:creator>G_W_Albrecht</dc:creator>
      <dc:date>2024-03-21T09:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: Gaia Portal SSL cipher suites</title>
      <link>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/209389#M34682</link>
      <description>&lt;P&gt;R77.30 is out of support since September 2019, so Gaia SSL Cipher suites are the least important issue - as IPS, AV, URLF and all other TP will not work, this can not be called a security solution! See &lt;A href="https://support.checkpoint.com/results/sk/sk111307" target="_blank"&gt;https://support.checkpoint.com/results/sk/sk111307&lt;/A&gt; about how to do this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2024 10:10:07 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/General-Topics/Gaia-Portal-SSL-cipher-suites/m-p/209389#M34682</guid>
      <dc:creator>G_W_Albrecht</dc:creator>
      <dc:date>2024-03-21T10:10:07Z</dc:date>
    </item>
  </channel>
</rss>

