<?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: WinEventLog UF 6.2 renderXml Blacklist in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-UF-6-2-renderXml-Blacklist/m-p/136584#M28136</link>
    <description>&lt;P&gt;Please see the splunk documentation: &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.1/Data/MonitorWindowsdata"&gt;http://docs.splunk.com/Documentation/Splunk/6.2.1/Data/MonitorWindowsdata&lt;/A&gt; -- there is a list of keys under the section, "Create advanced filters with 'whitelist' and 'blacklist'". These keys are the same keys IF you were not rendering the event in XML. &lt;/P&gt;</description>
    <pubDate>Tue, 03 Feb 2015 03:50:13 GMT</pubDate>
    <dc:creator>wcolgate_splunk</dc:creator>
    <dc:date>2015-02-03T03:50:13Z</dc:date>
    <item>
      <title>WinEventLog UF 6.2 renderXml Blacklist</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-UF-6-2-renderXml-Blacklist/m-p/136583#M28135</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;
I'm struggeling with setting up a blacklist for an WinEventLog inputs.conf with the renderXml = true.&lt;/P&gt;

&lt;P&gt;This is the inputs.conf stanza I'm using:&lt;BR /&gt;
[WinEventLog://Microsoft-Windows-Sysmon/Operational]&lt;BR /&gt;
disabled = false&lt;BR /&gt;
renderXml = true&lt;/P&gt;

&lt;P&gt;(refering to: &lt;A href="http://blogs.splunk.com/2014/11/24/monitoring-network-traffic-with-sysmon-and-splunk/"&gt;http://blogs.splunk.com/2014/11/24/monitoring-network-traffic-with-sysmon-and-splunk/&lt;/A&gt;)&lt;/P&gt;

&lt;P&gt;Now I want to blacklist every events caused by for example the splunkd.exe.&lt;/P&gt;

&lt;P&gt;I've tried something like&lt;BR /&gt;
blacklist = ParentImage="C:\Program Files\SplunkUniversalForwarder\bin\splunkd.exe"&lt;/P&gt;

&lt;P&gt;but this does not work.&lt;/P&gt;

&lt;P&gt;Any help is really apreciated.&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Martin&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2014 14:40:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-UF-6-2-renderXml-Blacklist/m-p/136583#M28135</guid>
      <dc:creator>mjaeger</dc:creator>
      <dc:date>2014-11-27T14:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: WinEventLog UF 6.2 renderXml Blacklist</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-UF-6-2-renderXml-Blacklist/m-p/136584#M28136</link>
      <description>&lt;P&gt;Please see the splunk documentation: &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.1/Data/MonitorWindowsdata"&gt;http://docs.splunk.com/Documentation/Splunk/6.2.1/Data/MonitorWindowsdata&lt;/A&gt; -- there is a list of keys under the section, "Create advanced filters with 'whitelist' and 'blacklist'". These keys are the same keys IF you were not rendering the event in XML. &lt;/P&gt;</description>
      <pubDate>Tue, 03 Feb 2015 03:50:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-UF-6-2-renderXml-Blacklist/m-p/136584#M28136</guid>
      <dc:creator>wcolgate_splunk</dc:creator>
      <dc:date>2015-02-03T03:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: WinEventLog UF 6.2 renderXml Blacklist</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-UF-6-2-renderXml-Blacklist/m-p/136585#M28137</link>
      <description>&lt;P&gt;were you ever able to accomplish blacklisting?  I was just trying to accomplish the same thing.  Since there is no message field when renderXml=true AND it appears that only specific keys (not including _raw) are supported with whitelisting|blacklisting, I am thinking a feature modification request is in order...&lt;/P&gt;</description>
      <pubDate>Sun, 22 Mar 2015 17:45:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-UF-6-2-renderXml-Blacklist/m-p/136585#M28137</guid>
      <dc:creator>dstaulcu</dc:creator>
      <dc:date>2015-03-22T17:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: WinEventLog UF 6.2 renderXml Blacklist</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-UF-6-2-renderXml-Blacklist/m-p/136586#M28138</link>
      <description>&lt;P&gt;I know this is a late response to thread, but finally got this working for myself as well.  Here is a sample input:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[WinEventLog://Microsoft-Windows-GroupPolicy/Operational]
renderXml= True
#client-side extension processing started/completed
whitelist1 = EventCode=%^(4016|5016)$%
#gpo download from domain controller
whitelist2 = EventCode=%^(5126)$%
#manual processing of GPO started/completed for user
whitelist3 = EventCode=%^(4004|8004)$%
#manual processing of GPO started/completed for machine
whitelist4 = EventCode=%^(4005|8005)$%
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 29 Dec 2015 05:30:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/WinEventLog-UF-6-2-renderXml-Blacklist/m-p/136586#M28138</guid>
      <dc:creator>dstaulcu</dc:creator>
      <dc:date>2015-12-29T05:30:41Z</dc:date>
    </item>
  </channel>
</rss>

