@AL3Z In the context of blacklisting Windows events using inputs.conf for a Universal Forwarder, the relevant process name field you would typically use depends on your specific requirements. Let me break down the options you mentioned: CreatorProcessName: This field represents the name of the process that created the new process. If you are interested in events based on the process that initiated the creation of another process, you might use this field. ParentProcessName: This field indicates the name of the parent process that spawned the new process. If you want to blacklist events based on the immediate parent process, you would use this field. NewProcessName: This field represents the name of the new process that was created. If you are looking to blacklist events based on the specific process that is created, this would be the field to use. When configuring blacklisting for Windows events, you may need to consider your specific use case and the level of granularity you require. For instance, if you want to block events based on a certain application being launched, you would use the "NewProcessName." If you want to block events based on a specific process initiating the creation of other processes, you might use "CreatorProcessName" or "ParentProcessName." Here's a basic example of how you might use inputs.conf to blacklist events based on the NewProcessName: [monitor://C:\Path\To\Your\Logs] disabled = false index = your_index sourcetype = your_sourcetype ignoreOlderThan = <your_time_specification> blacklist = \.exe$ ; Adjust this regex pattern based on your needs In the example above, the "blacklist" line uses a regular expression to filter out events where the new process name ends with ".exe". Adjust the regex pattern according to your requirements. Remember to restart the Universal Forwarder after making changes to the inputs.conf file for the changes to take effect. Always test your configurations in a controlled environment to ensure they behave as expected before deploying them in a production setting. Thanks rasad4468
... View more