<?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 In Splunk Enterprise Security, can you help me fix my search that uses the tstats command with a NOT operator? in Splunk Enterprise Security</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/In-Splunk-Enterprise-Security-can-you-help-me-fix-my-search-that/m-p/415886#M5009</link>
    <description>&lt;P&gt;I'm trying to use the NOT operator in a search to exclude internal destination traffic. Any help would be great!&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| tstats summariesonly=t count from datamodel=Network_Traffic where * by All_Traffic.dest All_Traffic.src | sort - count
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 06 Mar 2019 13:33:38 GMT</pubDate>
    <dc:creator>jvanbibber</dc:creator>
    <dc:date>2019-03-06T13:33:38Z</dc:date>
    <item>
      <title>In Splunk Enterprise Security, can you help me fix my search that uses the tstats command with a NOT operator?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/In-Splunk-Enterprise-Security-can-you-help-me-fix-my-search-that/m-p/415886#M5009</link>
      <description>&lt;P&gt;I'm trying to use the NOT operator in a search to exclude internal destination traffic. Any help would be great!&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| tstats summariesonly=t count from datamodel=Network_Traffic where * by All_Traffic.dest All_Traffic.src | sort - count
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Mar 2019 13:33:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/In-Splunk-Enterprise-Security-can-you-help-me-fix-my-search-that/m-p/415886#M5009</guid>
      <dc:creator>jvanbibber</dc:creator>
      <dc:date>2019-03-06T13:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: In Splunk Enterprise Security, can you help me fix my search that uses the tstats command with a NOT operator?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/In-Splunk-Enterprise-Security-can-you-help-me-fix-my-search-that/m-p/415887#M5010</link>
      <description>&lt;P&gt;And how would you recognize internal destination traffic in your case? Do you have asset enrichments in place, so you can do All_Traffic.dest_category!=internal or so?&lt;/P&gt;

&lt;P&gt;Hard to help with this little information. We'll need better info on what your data looks like, how you think you want to recognize internal destinations and what you have tried so far.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 23:30:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/In-Splunk-Enterprise-Security-can-you-help-me-fix-my-search-that/m-p/415887#M5010</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2020-09-29T23:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: In Splunk Enterprise Security, can you help me fix my search that uses the tstats command with a NOT operator?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/In-Splunk-Enterprise-Security-can-you-help-me-fix-my-search-that/m-p/415888#M5011</link>
      <description>&lt;P&gt;Well, based on IP private IP ranges is a good place to start, don't you think? 10.0.0.0/8&lt;BR /&gt;
I don't know how I would incorporate that into the search string&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2019 14:25:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/In-Splunk-Enterprise-Security-can-you-help-me-fix-my-search-that/m-p/415888#M5011</guid>
      <dc:creator>jvanbibber</dc:creator>
      <dc:date>2019-03-06T14:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: In Splunk Enterprise Security, can you help me fix my search that uses the tstats command with a NOT operator?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/In-Splunk-Enterprise-Security-can-you-help-me-fix-my-search-that/m-p/415889#M5012</link>
      <description>&lt;P&gt;You could try and exclude RFC 1918 ranges from the dest field&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| tstats summariesonly=t count from datamodel=Network_Traffic where All_Traffic.dest!=10.0.0.0/8 AND All_Traffic.dest!=172.16.0.0/12 AND All_Traffic.dest!=192.168.0.0/16 by All_Traffic.dest All_Traffic.src | sort - count
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Mar 2019 15:01:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/In-Splunk-Enterprise-Security-can-you-help-me-fix-my-search-that/m-p/415889#M5012</guid>
      <dc:creator>pkeenan87</dc:creator>
      <dc:date>2019-03-06T15:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: In Splunk Enterprise Security, can you help me fix my search that uses the tstats command with a NOT operator?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/In-Splunk-Enterprise-Security-can-you-help-me-fix-my-search-that/m-p/415890#M5013</link>
      <description>&lt;P&gt;Will give it a try, thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2019 15:04:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/In-Splunk-Enterprise-Security-can-you-help-me-fix-my-search-that/m-p/415890#M5013</guid>
      <dc:creator>jvanbibber</dc:creator>
      <dc:date>2019-03-06T15:04:59Z</dc:date>
    </item>
  </channel>
</rss>

