<?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: How to whitelist events using inputlookup? in Splunk Enterprise Security</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-whitelist-events-using-inputlookup/m-p/405966#M4719</link>
    <description>&lt;P&gt;I have resolved my issue 2 by using a Field Alias to recognize the field: Source_Network_Address (from WinEventLogs:Security sourcetype) as rhost (Linux sourcetype).&lt;/P&gt;

&lt;P&gt;For issue 1, I have attempted the tagging that you suggested and this did not work.&lt;/P&gt;

&lt;P&gt;Example of issue one: FieldName: src. Getting field name src=10.X.X.X and src=SERVER1.&lt;/P&gt;

&lt;P&gt;SERVER1 is the server with IP 10.X.X.X.&lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 23:26:09 GMT</pubDate>
    <dc:creator>wendtb</dc:creator>
    <dc:date>2020-09-29T23:26:09Z</dc:date>
    <item>
      <title>How to whitelist events using inputlookup?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-whitelist-events-using-inputlookup/m-p/405962#M4715</link>
      <description>&lt;P&gt;I am trying to whitelist events from a specific server using IP and hostname. I am running into 2 issues.&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;&lt;P&gt;I have different field values come up for the same host. (Ex: server1 and 10.2.3.4) I can use inputlookup to remove ip, however I can't figure out how to remove multiple values in the most efficient way.&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;On another search, I am also whitelisting, but in this case I need to add a whitelist of one server using IP, but for 2 different field values. For context, these are linux auth logs and WinEvent:Security logs.&lt;/P&gt;&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;Base part of search that I'm using for both:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;NOT [ | inputlookup ess_whitelist_security.csv | where match(alert_name, "Access - Default Account In Use") | rename src AS rhost | fields rhost ]
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Feb 2019 17:05:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-whitelist-events-using-inputlookup/m-p/405962#M4715</guid>
      <dc:creator>wendtb</dc:creator>
      <dc:date>2019-02-22T17:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to whitelist events using inputlookup?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-whitelist-events-using-inputlookup/m-p/405963#M4716</link>
      <description>&lt;P&gt;I am not sure if your are referring to tagging/rename/alias instead of white list? (terminology issue)&lt;/P&gt;

&lt;P&gt;If you have events coming from a same host with both  - hostname and IP address, you can use tags to have a common name for both events - eg. myapphost1&lt;/P&gt;

&lt;P&gt;your second scenario looks like you want to 'alias' a field. &lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 17:32:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-whitelist-events-using-inputlookup/m-p/405963#M4716</guid>
      <dc:creator>lakshman239</dc:creator>
      <dc:date>2019-02-22T17:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to whitelist events using inputlookup?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-whitelist-events-using-inputlookup/m-p/405964#M4717</link>
      <description>&lt;P&gt;Even after doing the Field Alias for scenario 2, I am still receiving those events. Seems more to do with my inputlookup language.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 20:25:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-whitelist-events-using-inputlookup/m-p/405964#M4717</guid>
      <dc:creator>wendtb</dc:creator>
      <dc:date>2019-02-22T20:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to whitelist events using inputlookup?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-whitelist-events-using-inputlookup/m-p/405965#M4718</link>
      <description>&lt;P&gt;Can you give examples and/or explain a bit more of your requirement 2?&lt;/P&gt;</description>
      <pubDate>Sat, 23 Feb 2019 22:43:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-whitelist-events-using-inputlookup/m-p/405965#M4718</guid>
      <dc:creator>lakshman239</dc:creator>
      <dc:date>2019-02-23T22:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to whitelist events using inputlookup?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-whitelist-events-using-inputlookup/m-p/405966#M4719</link>
      <description>&lt;P&gt;I have resolved my issue 2 by using a Field Alias to recognize the field: Source_Network_Address (from WinEventLogs:Security sourcetype) as rhost (Linux sourcetype).&lt;/P&gt;

&lt;P&gt;For issue 1, I have attempted the tagging that you suggested and this did not work.&lt;/P&gt;

&lt;P&gt;Example of issue one: FieldName: src. Getting field name src=10.X.X.X and src=SERVER1.&lt;/P&gt;

&lt;P&gt;SERVER1 is the server with IP 10.X.X.X.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 23:26:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-whitelist-events-using-inputlookup/m-p/405966#M4719</guid>
      <dc:creator>wendtb</dc:creator>
      <dc:date>2020-09-29T23:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to whitelist events using inputlookup?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-whitelist-events-using-inputlookup/m-p/405967#M4720</link>
      <description>&lt;P&gt;So, for scenario 1 - you have events which have the field 'src' - populated with IP address and some with 'hostnames'. Both are actually from the same server.  So, if you do a search like index=yourindex host=*  , you should see IP and hostname values for 'host'. So, if you tag events from host=10.X.X.X to  MYSERVER1 and similarly tag events with host=SERVER1 to MYSERVER1, you can achieve the same.&lt;/P&gt;

&lt;P&gt;what error/issue did you face? &lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 14:52:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-whitelist-events-using-inputlookup/m-p/405967#M4720</guid>
      <dc:creator>lakshman239</dc:creator>
      <dc:date>2019-02-26T14:52:44Z</dc:date>
    </item>
  </channel>
</rss>

