Hi there,
How the hell are we supposed to configure winlogbeats (ecs.version : 1.6.0) to drop events ?
I've tried, many, many variations, but none of them worked.
- name: Security
processors:
- drop_event.when.or:
- equals.winlog.event_id: 5152
It doesn't work.
- name: Security
processors:
- drop_event.when.and:
- equals.winlog.event_id: 5152
Does not work.
- name: Security
processors:
- drop_event.when:
and:
- equals:
winlog.event_data.EventId: 5152
Does not work.
- name: Security
processors:
- drop_event.when.or:
- equals.event_code: 5152
Does it work ? No.
- name: Security
processors:
- drop_event.when.or:
- equals.winlog_event_id: 5152
No.
- name: Security
processors:
- drop_event.when.and:
- equals.event_id: 5152
Guess what ? It doesn't work.
- name: Security
processors:
- drop_event.when.and:
- equals.event_id: '5152'
No luck.
- name: Security
processors:
- drop_event.when.and:
- equals:
event.code: 5152
Winlogbeat doesn't even start.
Thanks