so-import-evtx - timestamp extraction

This commit is contained in:
Josh Brower
2021-08-25 15:17:19 -04:00
parent c4a32ca631
commit 7b93f355e2
2 changed files with 181 additions and 0 deletions

View File

@@ -4,6 +4,12 @@
{ "remove": { "field": ["event.created","timestamp", "winlog.event_data.UtcTime", "event_record_id"], "ignore_failure": true } },
{ "pipeline": { "if": "ctx.winlog?.channel == 'Microsoft-Windows-Sysmon/Operational'", "name": "sysmon" } },
{ "pipeline": { "if": "ctx.winlog?.channel != 'Microsoft-Windows-Sysmon/Operational'", "name":"win.eventlogs" } },
{
"dissect": {
"field": "log.file.name",
"pattern" : "/tmp/%{import.id}.evtx"
}
},
{ "pipeline": { "name": "common" } }
]
}