<?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 create an exception in imputs.conf? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-create-an-exception-in-imputs-conf/m-p/646480#M109959</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/93915"&gt;@VatsalJagani&lt;/a&gt;&amp;nbsp;, thanks for the reply.&lt;BR /&gt;&lt;BR /&gt;I have the situation where my log is upper case in some cases and lower case in others, example:&lt;/P&gt;&lt;P&gt;%PROGRAMFILES%\ADOBE\ACROBAT READER DC\READER\ACROCEF_1\RDRCEF.EXE&lt;/P&gt;&lt;P&gt;%Program Files%\Adobe\Acrobat Reader DC\Reader\acrocef_1\RdrCEF.EXE&lt;/P&gt;&lt;P&gt;How do I put it in the regular expression to not be case sensitive? I'm testing via regex101, but I don't know which language.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;This is how the FullFilePath arrives in my Splunk:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;C:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader\acrocef_1\RdrCEF.exe&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Jun 2023 20:54:29 GMT</pubDate>
    <dc:creator>RenanMarcelino</dc:creator>
    <dc:date>2023-06-09T20:54:29Z</dc:date>
    <item>
      <title>How to create an exception in imputs.conf?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-create-an-exception-in-imputs-conf/m-p/646111#M109919</link>
      <description>&lt;P&gt;Hi everyone,&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt;I need to filter these events, but remove events related to RdrCEF.exe&lt;BR /&gt;&lt;BR /&gt;How to create an exception in inputs.conf with this Full File Path: &lt;STRONG&gt;C:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader\acrocef_1\RdrCEF.exe T&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Today my inputs.conf is:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;[WinEventLog://Microsoft-Windows-AppLocker/EXE and DLL]
checkpointInterval = 5
current_only = 0
disabled = 0
index = test1
start_from = oldest
renderXml = 1
whitelist = 8000, 8004, 8007, 8008, 8029, 8032, 8035, 8036, 8040
blacklist1 = EventCode = "^8004$" Message = "\%PROGRAMFILES\%\\ADOBE\\ACROBAT\sREADER\sDC\\READER\\ACROCEF_1\\RDRCEF\.EXE"
blacklist2 = EventCode = "^8004$" Message = "\%PROGRAMFILES\%\\ADOBE\\ACROBAT\sREADER\sDC\\READER\\ACROCEF_1\\RDRCEF\.EXE"
blacklist3 = EventCode = "^8004$" Message = "\\RDRCEF\.EXE"
blacklist4 = EventCode = "^8004$" Message = "*\\RDRCEF\.EXE"
_TCP_ROUTING = test&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 14:46:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-create-an-exception-in-imputs-conf/m-p/646111#M109919</guid>
      <dc:creator>RenanMarcelino</dc:creator>
      <dc:date>2023-06-07T14:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an exception in imputs.conf?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-create-an-exception-in-imputs-conf/m-p/646256#M109931</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/257320"&gt;@RenanMarcelino&lt;/a&gt;&amp;nbsp;- Try blacklist like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;blacklist5 = EventCode = "^8004$" Message = ".*\\Adobe\\Acrobat Reader DC\\Reader\\acrocef_1\\RdrCEF.exe.*"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't think you need any of your blacklist.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps!! Kindly upvote if it does!!!&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 06:31:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-create-an-exception-in-imputs-conf/m-p/646256#M109931</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2023-06-08T06:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an exception in imputs.conf?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-create-an-exception-in-imputs-conf/m-p/646480#M109959</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/93915"&gt;@VatsalJagani&lt;/a&gt;&amp;nbsp;, thanks for the reply.&lt;BR /&gt;&lt;BR /&gt;I have the situation where my log is upper case in some cases and lower case in others, example:&lt;/P&gt;&lt;P&gt;%PROGRAMFILES%\ADOBE\ACROBAT READER DC\READER\ACROCEF_1\RDRCEF.EXE&lt;/P&gt;&lt;P&gt;%Program Files%\Adobe\Acrobat Reader DC\Reader\acrocef_1\RdrCEF.EXE&lt;/P&gt;&lt;P&gt;How do I put it in the regular expression to not be case sensitive? I'm testing via regex101, but I don't know which language.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;This is how the FullFilePath arrives in my Splunk:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;C:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader\acrocef_1\RdrCEF.exe&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 20:54:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-create-an-exception-in-imputs-conf/m-p/646480#M109959</guid>
      <dc:creator>RenanMarcelino</dc:creator>
      <dc:date>2023-06-09T20:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an exception in imputs.conf?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-create-an-exception-in-imputs-conf/m-p/646500#M109961</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/257320"&gt;@RenanMarcelino&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Try below:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;blacklist5 = EventCode = "^8004$" Message = "(?i).*\\Adobe\\Acrobat Reader DC\\REader\\acrocef_1\\RdrCEF\.exe"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this helps!!!&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 08:24:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-create-an-exception-in-imputs-conf/m-p/646500#M109961</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2023-06-10T08:24:00Z</dc:date>
    </item>
  </channel>
</rss>

