<?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: Automate deployment of Indicators of Compromise (IOC) with a new API. in API / CLI Discussion</title>
    <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36955#M2258</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is great stuff.&amp;nbsp; Is there a plan to do more of a real time update?&amp;nbsp; This would be something like as soon as a publish occurs, the IOC would propagate to the gateway automatically?&amp;nbsp; Thinking along the lines of IPS where you can set a policy (which requires a threat prevention policy install) and IPS sigs would automatically get enabled on the gateway based on the policy, it would be nice for a way to add some IOCs and the gateways pick it up near real-time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Feb 2019 14:48:23 GMT</pubDate>
    <dc:creator>Brian_Deutmeyer</dc:creator>
    <dc:date>2019-02-22T14:48:23Z</dc:date>
    <item>
      <title>Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36943#M2246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://sc1.checkpoint.com/documents/SmartConsole/WhatsNew.html"&gt;The R80.20.M1 - Management Feature Release&lt;/A&gt; gives new API for something that previously we could only do from the SmartConsole GUI - deployment of&amp;nbsp;IOC's.&lt;/P&gt;&lt;P&gt;IOC's (Indicators of Compromise) are sources which are known as malicious.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Steps to deploy IOC's with the Management API:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;1. Login to the Management Server with the &lt;A href="https://sc1.checkpoint.com/documents/latest/APIs/index.html#cli/login~v1.2%20"&gt;login &lt;/A&gt;command. The response contains a session ID. Use it for the next steps.&lt;/P&gt;&lt;P&gt;2. Add, edit or delete indicators. The session ID is a required parameter in the "sid" header.&lt;/P&gt;&lt;P&gt;3. Publish your changes with the &lt;A href="https://sc1.checkpoint.com/documents/latest/APIs/index.html#cli/publish~v1.2%20"&gt;publish &lt;/A&gt;command.&lt;/P&gt;&lt;P&gt;4. Install the&amp;nbsp;Threat Prevention Policy on the gateways in which you would like to enforce this change, using the &lt;A href="https://sc1.checkpoint.com/documents/latest/APIs/index.html#cli/install-policy~v1.2%20"&gt;install-policy&lt;/A&gt; command. Remember, installing just the threat prevention part of the policy separates you from the network objects and access control changes that may have happened at the security management server.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Examples of indicator command executions:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Option A: &lt;A href="https://sc1.checkpoint.com/documents/latest/APIs/index.html#cli/add-threat-indicator~v1.2%20"&gt;define the indicators&lt;/A&gt; as part of the parameters:&lt;/P&gt;&lt;PRE class="" style="color: #191919; background: #efefef; border: 0px none; margin: 0px 0px 10px; padding: 9.5px;"&gt;mgmt_cli add threat-indicator name "My_Indicator" observables.1.name "My_Observable" observables.1.mail-to "someone@somewhere.com" observables.1.confidence "medium" observables.1.severity "low" observables.1.product "AV" action "ask" profile-overrides.1.profile "My_Profile" profile-overrides.1.action "detect"&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Option B: place an indicators file - in CSV or STIX format - and &lt;A href="https://sc1.checkpoint.com/documents/latest/APIs/index.html#cli/add-threat-indicator~v1.2%20"&gt;import its raw data&lt;/A&gt;:&lt;/P&gt;&lt;PRE class="" style="color: #191919; background: #efefef; border: 0px none; margin: 0px 0px 10px; padding: 9.5px;"&gt;mgmt_cli add threat-indicator name "My_Indicator" observables-raw-data ""&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Option C: edit the indicator action for a given &lt;A href="https://sc1.checkpoint.com/documents/latest/APIs/index.html#cli/add-threat-profile~v1.2%20"&gt;threat profile&lt;/A&gt;. A threat profile is connected to some scope behind a gateway in the &lt;A href="https://sc1.checkpoint.com/documents/latest/APIs/index.html#cli/show-threat-rulebase~v1.2%20"&gt;threat prevention policy&lt;/A&gt;.&lt;/P&gt;&lt;PRE class="" style="color: #191919; background: #efefef; border: 0px none; margin: 0px 0px 10px; padding: 9.5px;"&gt;mgmt_cli set threat-indicator name "My_Indicator" action "prevent" profile-overrides.remove "My_Profile"&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Option &lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt; &lt;A href="https://sc1.checkpoint.com/documents/latest/APIs/index.html#cli/show-threat-indicators~v1.2%20"&gt;show all indicators&lt;/A&gt; or &lt;A href="https://sc1.checkpoint.com/documents/latest/APIs/index.html#cli/show-threat-indicator~v1.2%20"&gt;one of the indicators&lt;/A&gt;:&lt;/P&gt;&lt;PRE class="" style="color: #191919; background: #efefef; border: 0px none; margin: 0px 0px 10px; padding: 9.5px;"&gt;mgmt_cli show threat-indicators&lt;/PRE&gt;&lt;PRE class="" style="color: #191919; background: #efefef; border: 0px none; margin: 0px 0px 10px; padding: 9.5px;"&gt;mgmt_cli show threat-indicator name "My_Indicator"&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Option E: &lt;A href="https://sc1.checkpoint.com/documents/latest/APIs/index.html#gui-cli/delete-threat-indicator~v1.2%20"&gt;delete&lt;/A&gt; some indicators:&lt;/P&gt;&lt;PRE class="" style="color: #191919; background: #efefef; border: 0px none; margin: 0px 0px 10px; padding: 9.5px;"&gt;mgmt_cli delete threat-indicator name "My_Indicator"&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;To get to it in SmartConsole:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;1. Open Security Policies&lt;/P&gt;&lt;P&gt;2. Navigate to Threat Prevention--&amp;gt;Policy&lt;/P&gt;&lt;P&gt;3. The bottom part changes to "Threat Tools". Click on "Indicators".&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="66919" alt="" class="image-1 jive-image j-img-original" src="https://community.checkpoint.com/legacyfs/online/checkpoint/66919_indicators.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let us know your feedback on this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2018 19:56:06 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36943#M2246</guid>
      <dc:creator>Tomer_Sole</dc:creator>
      <dc:date>2018-07-04T19:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36944#M2247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Following up&amp;nbsp;Tomer's post, this post may be usefull as well -&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.checkpoint.com/docs/DOC-3012"&gt;https://community.checkpoint.com/docs/DOC-3012&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Robert.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2018 13:09:52 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36944#M2247</guid>
      <dc:creator>Robert_Decker</dc:creator>
      <dc:date>2018-07-05T13:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36945#M2248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is good to know that there is a CSV support &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://community.checkpoint.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jul 2018 07:42:32 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36945#M2248</guid>
      <dc:creator>Ofir_Shikolski</dc:creator>
      <dc:date>2018-07-07T07:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36946#M2249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's very useful and important to leverage 3rd party resource integrated with threat prevention policy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2018 03:46:22 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36946#M2249</guid>
      <dc:creator>Danny_Yang</dc:creator>
      <dc:date>2018-07-09T03:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36947#M2250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This API can provide import CSV file from FTP or HTTP server ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2018 17:59:47 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36947#M2250</guid>
      <dc:creator>Jarvis_Lin1</dc:creator>
      <dc:date>2018-07-09T17:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36948#M2251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are&amp;nbsp;3 ways to import CSV's:&lt;/P&gt;&lt;P&gt;1. download the files, parse them and send as JSON&lt;/P&gt;&lt;P&gt;2. place on the Management Server and send the path&lt;/P&gt;&lt;P&gt;3. download the files, reorder the CSV columns to have exactly this order: Na&lt;SPAN style="color: #333333; background-color: #ffffff;"&gt;me, Value, Type, Confidence, Severity, Product, Comments, and then use the "observables-raw-data" parameter to send each row, for example:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="border: 0px;"&gt;&lt;SPAN style="color: #993300; border: 0px; font-weight: inherit;"&gt;&lt;EM style="border: 0px; font-weight: inherit;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;observables-raw-data "my_observable_1,&lt;/SPAN&gt;&lt;A class="" href="mailto:someone@somewhere.com" style="color: #6d6e71; background-color: transparent; border: 0px; font-weight: inherit; padding: 1px 0px 1px calc(12px + 0.35ex);"&gt;someone@somewhere.com&lt;/A&gt;&lt;SPAN style="border: 0px; font-weight: inherit;"&gt;,mail-to,medium,low,AB,my comment"&lt;/SPAN&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #ffffff;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jul 2018 04:34:19 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36948#M2251</guid>
      <dc:creator>Tomer_Sole</dc:creator>
      <dc:date>2018-07-10T04:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36949#M2252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Doesn't seem to be a usable method for more than a few indicators. I tried to import a CSV file with 500 lines (all type IP). Progress showed 20% for over 40 minutes so I finally aborted. I tried again with just 10 lines to verify my format was good. On R77.30 I run a daily import of 9 CSV files totaling about 7000 lines; takes just a couple minutes using the load_indicators command. Unfortunately I cannot use load_indicators on R80.20M1 because of an apparent bug (doesn't like IPs that have a zero in one of the IPv4 octets).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2018 16:12:33 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36949#M2252</guid>
      <dc:creator>Alex_Lewis</dc:creator>
      <dc:date>2018-08-24T16:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36950#M2253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It shouldn't take this long. Please open a support ticket.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Aug 2018 05:59:04 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36950#M2253</guid>
      <dc:creator>Tomer_Sole</dc:creator>
      <dc:date>2018-08-26T05:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36951#M2254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.checkpoint.com/migrated-users/6703"&gt;Tomer Sole&lt;/A&gt;‌ I followed your instructions and could import the CSV files just fine to the management...&lt;/P&gt;&lt;P&gt;BUT, when I want to look at them on the SmartConsole, the Windows process spikes to 20% cpu usage (for at least 10 minutes) and the application freezes. I'd to kill the process in order to login again&amp;nbsp;and it only happens when I go to&amp;nbsp;&lt;SPAN style="color: #333333; background-color: #ffffff;"&gt;"Threat Tools" and then click on "Indicators".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #ffffff;"&gt;If it's useful I imported 7 CSV files with a lot of records, if you need it I could count how much rows has&amp;nbsp;them.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #ffffff;"&gt;From where can I start debugging the issue?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #ffffff;"&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2019 16:13:47 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36951#M2254</guid>
      <dc:creator>SantiagoPlatero</dc:creator>
      <dc:date>2019-02-14T16:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36952#M2255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How many lines in the CSV file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2019 03:47:24 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36952#M2255</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2019-02-15T03:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36953#M2256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dameon, the total lines of all of the CSV files are&amp;nbsp;76238. The most lengthy file has 60774 lines, and other one has 11567&lt;/P&gt;&lt;P&gt;The rest of it doesn't have more than 1k lines.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2019 15:21:53 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36953#M2256</guid>
      <dc:creator>SantiagoPlatero</dc:creator>
      <dc:date>2019-02-15T15:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36954#M2257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm guessing that 76k line file is causing an issue.&lt;/P&gt;&lt;P&gt;Generally speaking, if you've got that many IOCs, it might be better to employ a Private ThreatCloud appliance.&lt;/P&gt;&lt;P&gt;In that case, you upload the IOCs to your PTC appliance and all your gateways consult it.&lt;/P&gt;&lt;P&gt;See:&amp;nbsp;&lt;A class="link-titled" href="https://supportcenter.checkpoint.com/supportcenter/portal?eventSubmit_doGoviewsolutiondetails=&amp;amp;solutionid=sk110394" title="https://supportcenter.checkpoint.com/supportcenter/portal?eventSubmit_doGoviewsolutiondetails=&amp;amp;solutionid=sk110394"&gt;Check Point Private ThreatCloud&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2019 19:59:29 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36954#M2257</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2019-02-15T19:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36955#M2258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is great stuff.&amp;nbsp; Is there a plan to do more of a real time update?&amp;nbsp; This would be something like as soon as a publish occurs, the IOC would propagate to the gateway automatically?&amp;nbsp; Thinking along the lines of IPS where you can set a policy (which requires a threat prevention policy install) and IPS sigs would automatically get enabled on the gateway based on the policy, it would be nice for a way to add some IOCs and the gateways pick it up near real-time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2019 14:48:23 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36955#M2258</guid>
      <dc:creator>Brian_Deutmeyer</dc:creator>
      <dc:date>2019-02-22T14:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36956#M2259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="link-titled" href="https://supportcenter.checkpoint.com/supportcenter/portal?eventSubmit_doGoviewsolutiondetails=&amp;amp;solutionid=sk132193" title="https://supportcenter.checkpoint.com/supportcenter/portal?eventSubmit_doGoviewsolutiondetails=&amp;amp;solutionid=sk132193"&gt;What is "Custom Intelligence Feeds" feature?&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2019 17:05:08 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36956#M2259</guid>
      <dc:creator>PhoneBoy</dc:creator>
      <dc:date>2019-02-22T17:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36957#M2260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #ffffff;"&gt;Check out&amp;nbsp;&lt;/SPAN&gt;&lt;A data-containerid="2011" data-containertype="14" data-objectid="3472" data-objecttype="102" href="http://www./docs/DOC-3472-how-to-extend-and-enhance-smartconsole" style="color: #6d6e71; background-color: #ffffff; border: 0px; padding: 1px 0px 1px calc(12px + 0.35ex);"&gt;How to extend and enhance SmartConsole?&lt;/A&gt;&lt;SPAN style="color: #333333; background-color: #ffffff;"&gt;&amp;nbsp;to integrate web pages inside SmartConsole&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2019 07:13:07 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/36957#M2260</guid>
      <dc:creator>Ron_Izraeli</dc:creator>
      <dc:date>2019-02-23T07:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/72889#M4315</link>
      <description>&lt;P&gt;How is this automated? It is a great feature, but these instructions are all done manually. I'd like a way to feed IOCs via API with an automation tool.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 16:57:06 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/72889#M4315</guid>
      <dc:creator>Tim_McColgan</dc:creator>
      <dc:date>2020-01-21T16:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/73350#M4322</link>
      <description>&lt;P&gt;Once you set up the gateway IoC feed, the updates are "automatic", but yes if you're adding indicators via the management API, then you have to build it using a tool. Which tool do you have in mind?&amp;nbsp; You can use &lt;A href="https://docs.ansible.com/ansible/devel/modules/list_of_network_modules.html#check-point" target="_self"&gt;Check Point Ansible modules&lt;/A&gt; or &lt;A href="https://www.terraform.io/docs/providers/checkpoint/index.html" target="_self"&gt;Terraform Check Point Provider&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2020 21:59:48 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/73350#M4322</guid>
      <dc:creator>DeletedUser</dc:creator>
      <dc:date>2020-01-24T21:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/88482#M4948</link>
      <description>&lt;P&gt;Hi Tomer,&lt;/P&gt;
&lt;P&gt;For the CSV, does it support using web API to insert multiple parameters (observables)&amp;nbsp; in single threat indicator name in single api command?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When i tried it will show that the name already exist (as name is required parameter) but the command only allow to put single observables-raw-data&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So the idea is something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"name"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"Test"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"observables-raw-data"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"my_observable_1,someone@somewhere.com,mail-to,medium,low,AB,my&amp;nbsp;comment"&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"my_observable_2,someone@somewhere.com,mail-to,medium,low,AB,my&amp;nbsp;comment"&lt;/SPAN&gt;&lt;SPAN&gt;,&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;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "my_observable_3,someone@somewhere.com,mail-to,medium,low,AB,my&amp;nbsp;comment",&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"action"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"ask"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"profile-overrides"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;:&amp;nbsp;[&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"profile"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"Test"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"action"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"detect"&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;}&amp;nbsp;],&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"ignore-warnings"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;true&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Sun, 14 Jun 2020 11:14:26 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/88482#M4948</guid>
      <dc:creator>antkwang</dc:creator>
      <dc:date>2020-06-14T11:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: Automate deployment of Indicators of Compromise (IOC) with a new API.</title>
      <link>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/104658#M5387</link>
      <description>&lt;P&gt;Hi, In the case of using&amp;nbsp;&lt;SPAN&gt;PTC appliance, gateways enforce policy immediately or policy installation is needed?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2020 13:28:23 GMT</pubDate>
      <guid>https://community.checkpoint.com/t5/API-CLI-Discussion/Automate-deployment-of-Indicators-of-Compromise-IOC-with-a-new/m-p/104658#M5387</guid>
      <dc:creator>IgorBodrik</dc:creator>
      <dc:date>2020-12-08T13:28:23Z</dc:date>
    </item>
  </channel>
</rss>

