<?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: WebEx prototype in General Topics</title>
    <link>https://live.paloaltonetworks.com/t5/general-topics/webex-prototype/m-p/321662#M96152</link>
    <description>&lt;P&gt;I could not do it in Minemeld so I just wrote a powershell script which is scheduled in Task Scheduler. I had to make the location of the list accessible with anonymous authentication. fyi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;# Set the location of the EDL&lt;BR /&gt;$FileName="D:\inetpub\wwwroot\WebEx\webex-cidrlist.txt"&lt;BR /&gt;#&lt;BR /&gt;# Overwrite any existing data an empty file&lt;BR /&gt;write-output "" | out-file -FilePath $FileName -Encoding ASCII&lt;BR /&gt;#&lt;BR /&gt;# Grab the contents of the webpage and put in variable&lt;BR /&gt;$results = Invoke-WebRequest -Uri '&lt;A href="https://help.webex.com/en-us/WBX000028782/Network-Requirements-for-Webex-Teams-Services#Spark%20IP%20subnets%20for%20media" target="_blank"&gt;https://help.webex.com/en-us/WBX000028782/Network-Requirements-for-Webex-Teams-Services#Spark%20IP%20subnets%20for%20media&lt;/A&gt;' -UseBasicParsing &lt;BR /&gt;#&lt;BR /&gt;# Extract the CIDRs from the page and write them to the EDL&lt;BR /&gt;$cidrs = ([regex]::Matches($results.rawcontent,'(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(?:\/\d{2}))') | select value)&lt;BR /&gt;if ($cidrs.Length -gt 0) {&lt;BR /&gt;write-output $cidrs.value | Out-File -FilePath $FileName -Encoding ascii&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;exit&lt;/P&gt;</description>
    <pubDate>Wed, 08 Apr 2020 17:14:13 GMT</pubDate>
    <dc:creator>alterioc</dc:creator>
    <dc:date>2020-04-08T17:14:13Z</dc:date>
    <item>
      <title>WebEx prototype</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/webex-prototype/m-p/319448#M96151</link>
      <description>&lt;P&gt;I'm trying to create a custom prototype to get the CIDRs from&amp;nbsp;&lt;A href="https://help.webex.com/en-us/WBX000028782/Network-Requirements-for-Webex-Teams-Services#Spark%20IP%20subnets%20for%20media" target="_blank"&gt;https://help.webex.com/en-us/WBX000028782/Network-Requirements-for-Webex-Teams-Services#Spark%20IP%20subnets%20for%20media&lt;/A&gt;/&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used the examples in&amp;nbsp;&lt;A href="https://live.paloaltonetworks.com/t5/MineMeld-Articles/MineMeld-to-Extract-Indicators-From-generic-API/ta-p/218757" target="_blank"&gt;https://live.paloaltonetworks.com/t5/MineMeld-Articles/MineMeld-to-Extract-Indicators-From-generic-API/ta-p/218757&lt;/A&gt;&amp;nbsp; and I'm using the &lt;SPAN&gt;minemeld.ft.http.HttpFT class, type IPv4,&amp;nbsp;&lt;/SPAN&gt;but it isn't working.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wanted to use:&lt;/P&gt;
&lt;P&gt;ignore_regex: ^(?!&amp;lt;li&amp;gt;)&lt;/P&gt;
&lt;P&gt;indicator:&lt;/P&gt;
&lt;P&gt;regex: '&amp;lt;li&amp;gt;(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(?:\/\d{2})) \(CIDR\).*&amp;lt;\/li&amp;gt;&lt;/P&gt;
&lt;P&gt;transform: \1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This gets me nothing. If I remove the&amp;nbsp;\(CIDR\).*&amp;lt;\/li&amp;gt; from the indicator I get just the first CIDR and no others. What am I doing wrong?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Mar 2020 22:55:41 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/webex-prototype/m-p/319448#M96151</guid>
      <dc:creator>alterioc</dc:creator>
      <dc:date>2020-03-30T22:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: WebEx prototype</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/webex-prototype/m-p/321662#M96152</link>
      <description>&lt;P&gt;I could not do it in Minemeld so I just wrote a powershell script which is scheduled in Task Scheduler. I had to make the location of the list accessible with anonymous authentication. fyi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;# Set the location of the EDL&lt;BR /&gt;$FileName="D:\inetpub\wwwroot\WebEx\webex-cidrlist.txt"&lt;BR /&gt;#&lt;BR /&gt;# Overwrite any existing data an empty file&lt;BR /&gt;write-output "" | out-file -FilePath $FileName -Encoding ASCII&lt;BR /&gt;#&lt;BR /&gt;# Grab the contents of the webpage and put in variable&lt;BR /&gt;$results = Invoke-WebRequest -Uri '&lt;A href="https://help.webex.com/en-us/WBX000028782/Network-Requirements-for-Webex-Teams-Services#Spark%20IP%20subnets%20for%20media" target="_blank"&gt;https://help.webex.com/en-us/WBX000028782/Network-Requirements-for-Webex-Teams-Services#Spark%20IP%20subnets%20for%20media&lt;/A&gt;' -UseBasicParsing &lt;BR /&gt;#&lt;BR /&gt;# Extract the CIDRs from the page and write them to the EDL&lt;BR /&gt;$cidrs = ([regex]::Matches($results.rawcontent,'(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(?:\/\d{2}))') | select value)&lt;BR /&gt;if ($cidrs.Length -gt 0) {&lt;BR /&gt;write-output $cidrs.value | Out-File -FilePath $FileName -Encoding ascii&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;exit&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2020 17:14:13 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/webex-prototype/m-p/321662#M96152</guid>
      <dc:creator>alterioc</dc:creator>
      <dc:date>2020-04-08T17:14:13Z</dc:date>
    </item>
  </channel>
</rss>

