<?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: SPL help - enterprise security in Splunk Cloud Platform</title>
    <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/SPL-help-enterprise-security/m-p/536424#M448</link>
    <description>&lt;P&gt;Sceikok,&lt;/P&gt;&lt;P&gt;that's exactly what I tried but it doesn't work.&amp;nbsp; By the way, there's a PIPE before the WHERE so i'm sure you meant it like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;| from inputlookup:access_tracker | where user!="bob*"&lt;BR /&gt;| stats min(firstTime) as firstTime,max(lastTime) as lastTime by user&lt;BR /&gt;| where ((now()-'lastTime')/86400)&amp;gt;90&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is it doesn't like the asterisk after bob.&amp;nbsp; If I type in an exact user, I can see it gets excluded. If I include the asterik, I see all the "BOBs"&lt;/P&gt;</description>
    <pubDate>Wed, 20 Jan 2021 04:45:03 GMT</pubDate>
    <dc:creator>iherb_0718</dc:creator>
    <dc:date>2021-01-20T04:45:03Z</dc:date>
    <item>
      <title>SPL help - enterprise security</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/SPL-help-enterprise-security/m-p/536390#M443</link>
      <description>&lt;P&gt;Trying to modify this default correlation search:&lt;/P&gt;&lt;P&gt;| from inputlookup:access_tracker | stats min(firstTime) as firstTime,max(lastTime) as lastTime by user | where ((now()-'lastTime')/86400)&amp;gt;90&lt;/P&gt;&lt;P&gt;I want to exclude from this search if the field "user" includes a value that begins with "bob"&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2021 21:22:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/SPL-help-enterprise-security/m-p/536390#M443</guid>
      <dc:creator>iherb_0718</dc:creator>
      <dc:date>2021-01-19T21:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: SPL help - enterprise security</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/SPL-help-enterprise-security/m-p/536392#M444</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/229889"&gt;@iherb_0718&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Please try this;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| from inputlookup:access_tracker where user LIKE "bob%"
| stats min(firstTime) as firstTime,max(lastTime) as lastTime by user 
| where ((now()-'lastTime')/86400)&amp;gt;90&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this reply helps you an upvote is appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2021 21:26:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/SPL-help-enterprise-security/m-p/536392#M444</guid>
      <dc:creator>scelikok</dc:creator>
      <dc:date>2021-01-19T21:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: SPL help - enterprise security</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/SPL-help-enterprise-security/m-p/536394#M445</link>
      <description>&lt;P&gt;Sceikok thanks for the quick response. I want to EXCLUDE bob.&amp;nbsp; &amp;nbsp;Therefore what booleon would that be? It won't be "LIKE"&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2021 21:30:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/SPL-help-enterprise-security/m-p/536394#M445</guid>
      <dc:creator>iherb_0718</dc:creator>
      <dc:date>2021-01-19T21:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: SPL help - enterprise security</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/SPL-help-enterprise-security/m-p/536405#M446</link>
      <description>&lt;P&gt;anyone please?&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2021 23:08:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/SPL-help-enterprise-security/m-p/536405#M446</guid>
      <dc:creator>iherb_0718</dc:creator>
      <dc:date>2021-01-19T23:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: SPL help - enterprise security</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/SPL-help-enterprise-security/m-p/536422#M447</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/229889"&gt;@iherb_0718&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;You can use below;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| from inputlookup:access_tracker where user!="bob*"
| stats min(firstTime) as firstTime,max(lastTime) as lastTime by user 
| where ((now()-'lastTime')/86400)&amp;gt;90&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this reply helps you an upvote is appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jan 2021 04:37:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/SPL-help-enterprise-security/m-p/536422#M447</guid>
      <dc:creator>scelikok</dc:creator>
      <dc:date>2021-01-20T04:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: SPL help - enterprise security</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/SPL-help-enterprise-security/m-p/536424#M448</link>
      <description>&lt;P&gt;Sceikok,&lt;/P&gt;&lt;P&gt;that's exactly what I tried but it doesn't work.&amp;nbsp; By the way, there's a PIPE before the WHERE so i'm sure you meant it like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;| from inputlookup:access_tracker | where user!="bob*"&lt;BR /&gt;| stats min(firstTime) as firstTime,max(lastTime) as lastTime by user&lt;BR /&gt;| where ((now()-'lastTime')/86400)&amp;gt;90&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is it doesn't like the asterisk after bob.&amp;nbsp; If I type in an exact user, I can see it gets excluded. If I include the asterik, I see all the "BOBs"&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jan 2021 04:45:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/SPL-help-enterprise-security/m-p/536424#M448</guid>
      <dc:creator>iherb_0718</dc:creator>
      <dc:date>2021-01-20T04:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: SPL help - enterprise security</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/SPL-help-enterprise-security/m-p/536428#M449</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/229889"&gt;@iherb_0718&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I didn't notice pipe , normally there is no need from command also but below should work based on your correlation search;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| from inputlookup:access_tracker | where NOT user LIKE "bob%"
| stats min(firstTime) as firstTime,max(lastTime) as lastTime by user
| where ((now()-'lastTime')/86400)&amp;gt;90&lt;/LI-CODE&gt;&lt;P&gt;or&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup access_tracker where user!="bob*"
| stats min(firstTime) as firstTime,max(lastTime) as lastTime by user 
| where ((now()-'lastTime')/86400)&amp;gt;90&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Both should be ok;&lt;/P&gt;&lt;P&gt;If this reply helps you an upvote is appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jan 2021 05:15:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/SPL-help-enterprise-security/m-p/536428#M449</guid>
      <dc:creator>scelikok</dc:creator>
      <dc:date>2021-01-20T05:15:42Z</dc:date>
    </item>
  </channel>
</rss>

