<?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 Locate Missing Software in Splunk Enterprise Security</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Locate-Missing-Software/m-p/476175#M7492</link>
    <description>&lt;P&gt;I am trying to run a search to locate specific missing software.  I'm hitting a roadblock.  I don't want to have to pull all software and do an extraction.  I just want to be able to see what devices are missing our AV applications.  Any thoughts?&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Tue, 07 Jan 2020 17:30:34 GMT</pubDate>
    <dc:creator>crisp023</dc:creator>
    <dc:date>2020-01-07T17:30:34Z</dc:date>
    <item>
      <title>Locate Missing Software</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Locate-Missing-Software/m-p/476175#M7492</link>
      <description>&lt;P&gt;I am trying to run a search to locate specific missing software.  I'm hitting a roadblock.  I don't want to have to pull all software and do an extraction.  I just want to be able to see what devices are missing our AV applications.  Any thoughts?&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2020 17:30:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Locate-Missing-Software/m-p/476175#M7492</guid>
      <dc:creator>crisp023</dc:creator>
      <dc:date>2020-01-07T17:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: Locate Missing Software</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Locate-Missing-Software/m-p/476176#M7493</link>
      <description>&lt;P&gt;You can't search for something that's not there.  See &lt;A href="https://www.duanewaddle.com/proving-a-negative/"&gt;https://www.duanewaddle.com/proving-a-negative/&lt;/A&gt;&lt;BR /&gt;
The only way to find who doesn't have something is to subtract those that do have it from the list of everyone.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2020 17:44:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Locate-Missing-Software/m-p/476176#M7493</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-01-07T17:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: Locate Missing Software</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/Locate-Missing-Software/m-p/476177#M7494</link>
      <description>&lt;P&gt;As @richgalloway &lt;A href="https://answers.splunk.com/answering/793880/view.html"&gt;said&lt;/A&gt;, you cannot look for some that's not there&lt;/P&gt;

&lt;P&gt;However, you &lt;EM&gt;can&lt;/EM&gt; look for things that are &lt;EM&gt;some&lt;/EM&gt; places and not others&lt;/P&gt;

&lt;P&gt;You might do something like this on a periodic basis (of course, use whatever field names fit your environment):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=ndx sourcetype=srctp hostname=* appname=*
| stats count by hostname
| fields - count
| outputlookup allendpointswithsoftware.csv
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Now you have a list of all endpoints that have installed software of any kind.&lt;/P&gt;

&lt;P&gt;Now get a list of all endpoints that &lt;EM&gt;have&lt;/EM&gt; the AV software:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=ndx sourcetype=srctp hostname=* appname="my-AV-name"
| stats count by hostname
| fields - count
| outputlookup allendpointswithavtools.csv
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Then do a diff between them:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| inputlookup allendpointswithsoftware.csv
| search NOT
[ | inputlookup allendpointswithavtools.csv ]
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This will give you all the hosts that &lt;EM&gt;weren't&lt;/EM&gt; in the AV-is-installed list, but &lt;EM&gt;are&lt;/EM&gt; known in Splunk&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2020 20:20:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/Locate-Missing-Software/m-p/476177#M7494</guid>
      <dc:creator>wmyersas</dc:creator>
      <dc:date>2020-01-07T20:20:36Z</dc:date>
    </item>
  </channel>
</rss>

