Hi,
How we can list out all the apps inputs.conf blacklisted stanzas in the DS ? Coz I'm seeing the command line events are getting blocked in my Environment..
Thanks
Hi @AL3Z .. in linux, using the find and grep commands.. you can find all the blacklisted lines recursively.
find . -name '*.conf' -exec grep -i 'blacklist' {}\; -print
grep -Ril "text-to-find-here" /
i stands for ignore case (optional in your case).
R stands for recursive.
l stands for "show the file name, not the result itself".
/ stands for starting at the root of your machine.
Hi @inventsekar ,
Can we check in the windows system ?