Skip to content

Commit 97404f9

Browse files
authored
Fix authentication_failure event.type for security module (#12393)
Change authentication_failed to authentication_failure in the event.type field added by the Security module. Relates #11651
1 parent 568d2b4 commit 97404f9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

x-pack/winlogbeat/module/security/config/winlogbeat-security.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var security = (function () {
1818
var addAuthFailed = new processor.AddFields({
1919
fields: {
2020
"event.category": "authentication",
21-
"event.type": "authentication_failed",
21+
"event.type": "authentication_failure",
2222
},
2323
target: "",
2424
});

x-pack/winlogbeat/module/security/test/testdata/security-windows2012r2-logon.evtx.golden.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@
10691069
"category": "authentication",
10701070
"code": 4625,
10711071
"kind": "event",
1072-
"type": "authentication_failed"
1072+
"type": "authentication_failure"
10731073
},
10741074
"log": {
10751075
"level": "information"

0 commit comments

Comments
 (0)