-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Filebeat] Fix dissect pattern for Cisco WebVPN message 716002 #22966
[Filebeat] Fix dissect pattern for Cisco WebVPN message 716002 #22966
Conversation
The message can contain one of several session termination reasons so don't hardcode "User requested" into the pattern. Reference: https://www.cisco.com/c/en/us/td/docs/security/asa/syslog/b_syslog/syslogs8.html#con_4776918
8693f7f
to
c16bc4c
Compare
Pinging @elastic/security-external-integrations (Team:Security-External Integrations) |
@@ -546,7 +546,7 @@ processors: | |||
- dissect: | |||
if: "ctx._temp_.cisco.message_id == '716002'" | |||
field: "message" | |||
pattern: "Group %{} User %{source.user.name} IP %{source.address} WebVPN session terminated: User Requested." | |||
pattern: "Group %{} User %{source.user.name} IP %{source.address} WebVPN session terminated: %{}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any value in mapping this to event.reason
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That sounds good. I was looking for a field to put this into.
…ic#22966) The message can contain one of several session termination reasons so don't hardcode "User requested" into the pattern. Reference: https://www.cisco.com/c/en/us/td/docs/security/asa/syslog/b_syslog/syslogs8.html#con_4776918 (cherry picked from commit 6955f81)
… (#23131) The message can contain one of several session termination reasons so don't hardcode "User requested" into the pattern. Reference: https://www.cisco.com/c/en/us/td/docs/security/asa/syslog/b_syslog/syslogs8.html#con_4776918 (cherry picked from commit 6955f81)
What does this PR do?
The message can contain one of several session termination reasons so don't hardcode "User requested" into the pattern.
Reference: https://www.cisco.com/c/en/us/td/docs/security/asa/syslog/b_syslog/syslogs8.html#con_4776918
Why is it important?
The module was failing to parse some WebVPN log messages.
Checklist
CHANGELOG.next.asciidoc
orCHANGELOG-developer.next.asciidoc
.