Skip to content

Commit c342655

Browse files
author
Derrick Lee
committed
Fix enum
1 parent 2edc620 commit c342655

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Parsers/ASimAuthentication/Parsers/ASimAuthenticationCiscoISEAdministrator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ ParserQuery: |
5151
| extend
5252
EventResult = iff(isnotempty(AdminName), "Success", "Failure"), // AdminName exists in Syslog if authentication was successful
5353
EventResultDetails = iff(isempty(AdminName), case(
54-
OperationMessageText has "Failed password", "Incorrect Password",
54+
OperationMessageText has "Failed password", "Incorrect password",
5555
OperationMessageText has "User unknown", "No such user",
5656
"Other"
5757
), ""),

Parsers/ASimAuthentication/Parsers/vimAuthenticationCiscoISEAdministrator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ ParserQuery: |
9494
| extend
9595
EventResult = iff(isnotempty(AdminName), "Success", "Failure"), // AdminName exists in Syslog if authentication was successful
9696
EventResultDetails = iff(isempty(AdminName), case(
97-
OperationMessageText has "Failed password", "Incorrect Password",
97+
OperationMessageText has "Failed password", "Incorrect password",
9898
OperationMessageText has "User unknown", "No such user",
9999
"Other"
100100
), ""),

0 commit comments

Comments
 (0)