I have a template I'm using to gather event ID's.
Currently, I've successfully created a key: eventlog[Security,,,,4625,,skip]
However, I'd like to filter out anything that has:
Subject:
Security ID: NULL SID
I've tried to do a regular expression / key combo with the key being:
eventlog[Security,,not@NULL,,4625,,skip]
and the regular expression being:
Result is TRUE with the expression being: (.*)Subject: \tSecurity ID:\t\tNULL SID
But it's not exactly working. Is there anyway to stop processing event's that have a null security ID and subject?
I'm not sure what or how else to do this.
Any suggestions would be appreciated!
Currently, I've successfully created a key: eventlog[Security,,,,4625,,skip]
However, I'd like to filter out anything that has:
Subject:
Security ID: NULL SID
I've tried to do a regular expression / key combo with the key being:
eventlog[Security,,not@NULL,,4625,,skip]
and the regular expression being:
Result is TRUE with the expression being: (.*)Subject: \tSecurity ID:\t\tNULL SID
But it's not exactly working. Is there anyway to stop processing event's that have a null security ID and subject?
I'm not sure what or how else to do this.
Any suggestions would be appreciated!
Comment