Skip to content
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

Better Parsing with ASA syslog messages in Filebeat #14151

Closed
mancharagopan opened this issue Oct 20, 2019 · 3 comments
Closed

Better Parsing with ASA syslog messages in Filebeat #14151

mancharagopan opened this issue Oct 20, 2019 · 3 comments
Labels

Comments

@mancharagopan
Copy link

Describe the enhancement:
Filebeat currently parsing only a few ASA syslog events. It could support more syslog events such as authentication events, command execution which are more useful for the SIEM app to analyze. At the moment SIEM not detecting firewall hostname, ip or success/failure logins.

Describe a specific use case for the enhancement or feature:
Filebeat not parsing ASA syslog message 111008 which is generated when a user execute a command, Filebeat could parse the message and also populate whether the action is successful or failure. I am using following grok filter on logstash 6.6 to parse some of the asa syslog message,

grok {
 match => { "message" => "<%{INT:recordId}>%{DATA:[hostname]} \%%{DATA:[event][dataset]}-%{INT:[severity]}-%{INT:[cisco][asa][message_id]}:" }
  }

 if "%ASA-5-111008" in [message] {
   grok {
 match => {"message" => "111008: User '%{DATA:[cisco][asa][source_username]}' %{GREEDYDATA:[event][action]}"}
     add_field => {
       "[log][original]" => "Command Executed"
       "[event][outcome]" => "success"
 }
   }
 }
@elasticmachine
Copy link
Collaborator

Pinging @elastic/siem (Team:SIEM)

@andresrc
Copy link
Contributor

andresrc commented May 3, 2020

I think this one can be closed

@botelastic
Copy link

botelastic bot commented Apr 3, 2021

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@botelastic botelastic bot added the Stalled label Apr 3, 2021
@botelastic botelastic bot closed this as completed May 3, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants