<?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: Show Ruleset and Objects on the Gateway (Emergency Recovery) in Firewall and Security Management</title>
    <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204006#M38469</link>
    <description>&lt;P&gt;we developped in the past for R77.x but we also developped for R80.x as well.&lt;/P&gt;
&lt;P&gt;It is a service not a free tool but helped already many customers.&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jan 2024 21:03:04 GMT</pubDate>
    <dc:creator>Luc_Cormorand</dc:creator>
    <dc:date>2024-01-23T21:03:04Z</dc:date>
    <item>
      <title>Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/155533#M30470</link>
      <description>&lt;P&gt;I had an emergency case at the customer that the management server (virtual server under VMWARE) was encrypted by an encryption trojan. The VMWare datastore was encrypted and also the virtual management server. Thus, the management server became unusable. Unfortunately, there was no backup, snapshot or "mirate server export" of the management server.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;The big question was&lt;/STRONG&gt;, &lt;STRONG&gt;can we reconstruct the policy&lt;/STRONG&gt; and the corresponding objects &lt;STRONG&gt;on the gateway&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;I found an interesting way to show the currently running policy and objects on the gateway.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Show layer structure:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="java"&gt;db_tool -p /opt/CPsuite-R81.10/fw1/state/local/FW1 get_layers&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Show&amp;nbsp; installed ruleset:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;db_tool -p /opt/CPsuite-R81.10/fw1/state/local/FW1 get_rules&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Show all installed objects and object settings:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;db_tool -p /opt/CPsuite-R81.10/fw1/state/local/FW1 get_rules |grep UUID | awk '{split($0,a,":"); print a[2]}' | uniq | awk ' { cmd="db_tool -p /opt/CPsuite-R81.10/fw1/state/local/FW1 get_object -u "$1;system(cmd)}'&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Show IP spoofing settings:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;ifconfig -a |grep -B 1 inet |grep encap| awk '{print $1}' | grep -v lo | grep -v ":" | grep -v ^lo | xargs -I % sh -c 'echo %;echo -n " VIP "; cphaprob -a if |grep %|grep -v U|grep -v D | cut -c16-| tr -d "\r\n" ;echo;echo -n " IP ";ifconfig % | grep "inet addr" | cut -d ":" -f 2 | cut -d " " -f 1;echo -n " Mask " ;ifconfig % | sed -rn "2s/ .*:(.*)$/\1/p";echo -en " ANTISPOOFING ENABLED:\t";more $FWDIR/state/local/FW1/local.set |grep -A 30 % | grep has_addr_info | cut -c17- | tr \) " " |sort -n| uniq ; echo -en " ANTISPOOFING MODE:\t"; if [ `more $FWDIR/state/local/FW1/local.set |grep -A 30 % | grep monitor_only | cut -c16- | tr \) " " |sort -n| uniq| grep -o false` ]; then echo "PREVENT"; else echo "DETECT"; fi; echo -en " ANTISPOOFING TOPO:\t"; if [ `more $FWDIR/state/local/FW1/local.set |grep -A 30 % | grep external | cut -c12- | tr \) " " |sort -n| uniq| grep -o true` ]; then echo "External"; else echo "Internal"; fi;echo " ADDRESS SPOOFING NETWORKS:";more $FWDIR/state/local/FW1/local.set | grep -A 30 %|grep ": (\""|sort -n| uniq |tr \(\)\&amp;lt;\&amp;gt;\:\" \ ;echo " "'&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Version:&lt;BR /&gt;1.0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; first oneliner&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2022-08-25&lt;BR /&gt;2.0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; R82 and R82.10+ version&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2026-01-27&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jan 2026 14:10:38 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/155533#M30470</guid>
      <dc:creator>HeikoAnkenbrand</dc:creator>
      <dc:date>2026-01-29T14:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: Display Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/155535#M30471</link>
      <description>&lt;P&gt;Repost plus some additions of what&amp;nbsp;&lt;a href="https://community.checkpoint.com/t5/user/viewprofilepage/user-id/39389"&gt;@deniskr&lt;/a&gt;&amp;nbsp;posted 2 weeks ago &lt;A href="https://community.checkpoint.com/t5/Management/How-to-check-the-access-list-in-Check-Point-via-CLI/m-p/154715/highlight/true#M31623" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;TAC / PS have developed a CP-internal method to recover the security policy from a gateway. Ask them for help in such cases.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 19:12:14 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/155535#M30471</guid>
      <dc:creator>Danny</dc:creator>
      <dc:date>2022-08-23T19:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: Display Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/155630#M30472</link>
      <description>&lt;P&gt;Heiko, could you elaborate about "encrypted by a trojan"? Was it a VM, and the VM server got encrypted? I hardly believe a trojan could do anything on the HW-based Gaia server in the first place...&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 10:07:21 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/155630#M30472</guid>
      <dc:creator>_Val_</dc:creator>
      <dc:date>2022-08-24T10:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Display Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/155650#M30473</link>
      <description>&lt;P&gt;YES, the encryption trojan has encrypted the complete VMWare datastore. This meant that all virtual machines could no longer be used. The management server was also affected because it was also virtual system.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;I have corrected this in the text above&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 19:52:45 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/155650#M30473</guid>
      <dc:creator>HeikoAnkenbrand</dc:creator>
      <dc:date>2022-08-24T19:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: Display Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/155698#M30474</link>
      <description>&lt;P&gt;Understood, thanks for clarifying.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 11:00:43 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/155698#M30474</guid>
      <dc:creator>_Val_</dc:creator>
      <dc:date>2022-08-25T11:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/182250#M33408</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;i've a similar problem. The management server got corrupted after a VMware upgrade and no backup/snapshot.&lt;/P&gt;
&lt;P&gt;I can access gaia system but it seems that a ton of linux commands and clish shell are corrupted too (unable to use).&lt;/P&gt;
&lt;P&gt;So i was thinking about two fix:&lt;/P&gt;
&lt;P&gt;- Try to extract the database from the OS to a new deployed management to test a migrate server (this command it doesn't work on corrupted VM). Anyone is able to identify in which folder/partition the database it is located?&lt;/P&gt;
&lt;P&gt;- Try to fix the corrupted system: no access to clish so i cannot perform, for example, a software upgrade... any idea?&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2023 12:31:11 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/182250#M33408</guid>
      <dc:creator>CheckPointerXL</dc:creator>
      <dc:date>2023-05-26T12:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/182259#M33411</link>
      <description>&lt;P&gt;Im pretty sure below is all database related on mgmt server&lt;/P&gt;
&lt;P&gt;$CPDIR/database folder&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[Expert@QUANTUM-MANAGEMENT:0]# cd /opt/CPshrd-R81.20/database/&lt;BR /&gt;[Expert@QUANTUM-MANAGEMENT:0]# ls&lt;BR /&gt;CPCoreUploader&lt;BR /&gt;EntMgr_BC_DB.xml&lt;BR /&gt;EntMgr_DB.xml&lt;BR /&gt;EntMgr_DB.xml.org&lt;BR /&gt;ICA_QUANTUM-MANAGEMENT_a2n_net_uhsukv_ac03fe.crl&lt;BR /&gt;cpdiag&lt;BR /&gt;cpeps&lt;BR /&gt;cpeps_verification&lt;BR /&gt;cprid&lt;BR /&gt;downloads&lt;BR /&gt;entitlement_status_collector_db.C&lt;BR /&gt;entitlement_status_collector_db.C.backup&lt;BR /&gt;fingerprints.txt&lt;BR /&gt;postgresql&lt;BR /&gt;[Expert@QUANTUM-MANAGEMENT:0]#&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2023 12:55:35 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/182259#M33411</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2023-05-26T12:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/182260#M33412</link>
      <description>&lt;P&gt;i will try to move that folder on a new mgmt and to test a migrate server on it&lt;/P&gt;
&lt;P&gt;thanks !&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2023 12:57:13 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/182260#M33412</guid>
      <dc:creator>CheckPointerXL</dc:creator>
      <dc:date>2023-05-26T12:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/182261#M33413</link>
      <description>&lt;P&gt;Also, attached a file that describes a process building new mgmt from scratch (old school method). Never tried in R80+, but I bet it still works.&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2023 12:59:04 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/182261#M33413</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2023-05-26T12:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/182267#M33416</link>
      <description>&lt;P&gt;No, it will not. The procedure is incomplete, and only works for R7x and below.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2023 13:43:57 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/182267#M33416</guid>
      <dc:creator>_Val_</dc:creator>
      <dc:date>2023-05-26T13:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/182268#M33417</link>
      <description>&lt;P&gt;Good to know!&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2023 13:50:48 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/182268#M33417</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2023-05-26T13:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204003#M38466</link>
      <description>&lt;P&gt;Check Point PS Team develops a tool that is able to rebuild mgmt from gateway with some limitations...Name is SmartRescuer.&lt;/P&gt;
&lt;P&gt;Contact your local CP Sale or SE...At least contact Miser Val that will forward us the request.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 20:50:28 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204003#M38466</guid>
      <dc:creator>Luc_Cormorand</dc:creator>
      <dc:date>2024-01-23T20:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204005#M38468</link>
      <description>&lt;P&gt;Never heard of it...its for R80+ versions?&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 21:00:11 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204005#M38468</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2024-01-23T21:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204006#M38469</link>
      <description>&lt;P&gt;we developped in the past for R77.x but we also developped for R80.x as well.&lt;/P&gt;
&lt;P&gt;It is a service not a free tool but helped already many customers.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 21:03:04 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204006#M38469</guid>
      <dc:creator>Luc_Cormorand</dc:creator>
      <dc:date>2024-01-23T21:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204007#M38470</link>
      <description>&lt;P&gt;I figured its not free, otherwise, Im sure I would have seen it on support site lol&lt;/P&gt;
&lt;P&gt;Personally, I always tell the customers to generate VM snapshot if they use vmware for mgmt or if its open server, then have recent backup and snapshot too, you never know. Broken management server is pretty bad situation.&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 21:06:07 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204007#M38470</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2024-01-23T21:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204009#M38472</link>
      <description>&lt;P&gt;And you are fully right...Check Point provides so many ways to backup the management database...However, just last year, we were contacted more than 20 times to restore management from gateway.&lt;/P&gt;
&lt;P&gt;I am happy to develop the "useless" tool...until the next time a customer will see the&amp;nbsp;usefulness of this service. &lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 21:14:27 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204009#M38472</guid>
      <dc:creator>Luc_Cormorand</dc:creator>
      <dc:date>2024-01-23T21:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204010#M38473</link>
      <description>&lt;P&gt;I never said it was useless LOL&lt;/P&gt;
&lt;P&gt;I cant comment on it at all, as the only way for me to make judgment is if I saw how it works myself, thats it. If it helped 20 customers, I would say thats really good!&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 21:17:24 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204010#M38473</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2024-01-23T21:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204012#M38474</link>
      <description>&lt;P&gt;We said "internally it is an useless tool"....But we are happy to see it is not so useless &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;One day I will show you the tool...in the meantim, if you have some customers that did not follow your recommendations, please ping me.&lt;/P&gt;
&lt;P&gt;regards&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 21:21:42 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204012#M38474</guid>
      <dc:creator>Luc_Cormorand</dc:creator>
      <dc:date>2024-01-23T21:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204013#M38475</link>
      <description>&lt;P&gt;Thats good to know! No, personally, my company would not need it, as we have people who been around CP products real long time.&lt;/P&gt;
&lt;P&gt;But, I would like to see how it works one day...I love to learn new things.&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 21:24:46 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204013#M38475</guid>
      <dc:creator>the_rock</dc:creator>
      <dc:date>2024-01-23T21:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: Show Ruleset and Objects on the Gateway (Emergency Recovery)</title>
      <link>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204039#M38487</link>
      <description>&lt;P&gt;I am in similar situation, management server is gone, gateways fortunately are still working. Commands works like charm, thank you for them, I am able to "reconstruct" rulebase, objects used and antispoofing.&lt;/P&gt;&lt;P&gt;Is it also possible to extract also NAT rules?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2024 11:27:39 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/Firewall-and-Security-Management/Show-Ruleset-and-Objects-on-the-Gateway-Emergency-Recovery/m-p/204039#M38487</guid>
      <dc:creator>MartinOles</dc:creator>
      <dc:date>2024-01-24T11:27:39Z</dc:date>
    </item>
  </channel>
</rss>

