<?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: MineMeld for importing STIX XML files in General Topics</title>
    <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-for-importing-stix-xml-files/m-p/217320#M98047</link>
    <description>&lt;P&gt;Sorry for the split reply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, this is not extracting the MD5 of the detected files. Any ideas?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR,&lt;/P&gt;
&lt;P&gt;Petar&lt;/P&gt;</description>
    <pubDate>Mon, 11 Jun 2018 08:22:36 GMT</pubDate>
    <dc:creator>Vladimir_S</dc:creator>
    <dc:date>2018-06-11T08:22:36Z</dc:date>
    <item>
      <title>MineMeld for importing STIX XML files</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-for-importing-stix-xml-files/m-p/216118#M98044</link>
      <description>&lt;P&gt;Hey guys,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope you are all doing great.&lt;/P&gt;
&lt;P&gt;Its my first touch to both STIX XML files and MindMeld, so I was hoping to get a shed of light with at least if it is possible?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to find a way to import manually a STIX file (which I have attached) to the MindMeld so that it can feed my VM-100 FWs, is that possible and how can I accomplish it?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance for your awesomeness!&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Petar&lt;/P&gt;</description>
      <pubDate>Thu, 31 May 2018 15:51:12 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-for-importing-stix-xml-files/m-p/216118#M98044</guid>
      <dc:creator>Vladimir_S</dc:creator>
      <dc:date>2018-05-31T15:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: MineMeld for importing STIX XML files</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-for-importing-stix-xml-files/m-p/217038#M98045</link>
      <description>&lt;P&gt;Hi &lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/81962"&gt;@Vladimir_S&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;how often do you need to feed such a file content to MineMeld?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd suggest pipelining it through a xslt transformation to extract the indicators and the push the result to MineMeld using its localDB miner API.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, the following XSLT file extract the indicators in the file you just shared.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&amp;lt;?xml version="1.0"?&amp;gt;
&amp;lt;xsl:stylesheet version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:AddressObj="http://cybox.mitre.org/objects#AddressObject-2"
	xmlns:indicator="http://stix.mitre.org/Indicator-2"
	xmlns:stix="http://stix.mitre.org/stix-1"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&amp;gt;

&amp;lt;xsl:output method="text" omit-xml-declaration="yes" /&amp;gt;

&amp;lt;xsl:template match="//stix:Indicator/indicator:Observable//AddressObj:Address_Value"&amp;gt;
&amp;lt;xsl:value-of select="." /&amp;gt;
    &amp;lt;xsl:text&amp;gt;&amp;amp;#xa;&amp;lt;/xsl:text&amp;gt;
&amp;lt;/xsl:template&amp;gt;

&amp;lt;xsl:template match="node()|@*"&amp;gt;
  &amp;lt;xsl:apply-templates select="node()|@*"/&amp;gt;
&amp;lt;/xsl:template&amp;gt;

&amp;lt;/xsl:stylesheet&amp;gt;&lt;/PRE&gt;
&lt;P&gt;Pipeline example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;xhoms$ cat TA18-149A.stix.xml | xsltproc stixx_address.xslt -
181.1.253.234
200.82.62.24
81.243.151.226
81.247.219.196
138.204.211.197
...&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jun 2018 21:44:48 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-for-importing-stix-xml-files/m-p/217038#M98045</guid>
      <dc:creator>xhoms</dc:creator>
      <dc:date>2018-06-07T21:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: MineMeld for importing STIX XML files</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-for-importing-stix-xml-files/m-p/217319#M98046</link>
      <description>&lt;P&gt;Hey &lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/6710"&gt;@xhoms&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Really appreciate the help!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you provide me instructions how to pipeline it through a xslt transformation to extract the indicators and the push the result to MineMeld using its localDB miner API? &lt;/P&gt;
&lt;P&gt;Sorry for the pain-in-the-arse, but I am really kinda new to this method of feed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Petar Trifonov&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jun 2018 08:17:54 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-for-importing-stix-xml-files/m-p/217319#M98046</guid>
      <dc:creator>Vladimir_S</dc:creator>
      <dc:date>2018-06-11T08:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: MineMeld for importing STIX XML files</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/minemeld-for-importing-stix-xml-files/m-p/217320#M98047</link>
      <description>&lt;P&gt;Sorry for the split reply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, this is not extracting the MD5 of the detected files. Any ideas?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR,&lt;/P&gt;
&lt;P&gt;Petar&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jun 2018 08:22:36 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/minemeld-for-importing-stix-xml-files/m-p/217320#M98047</guid>
      <dc:creator>Vladimir_S</dc:creator>
      <dc:date>2018-06-11T08:22:36Z</dc:date>
    </item>
  </channel>
</rss>

