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

[Feature request] Able to extract all available fields into output_fields #3287

Open
AmberSecurity opened this issue Aug 2, 2024 · 0 comments

Comments

@AmberSecurity
Copy link

Motivation

We use falcosidekick to deliver the alerts to our analysis platform(like SIEM), so we often need all of the available fields to support the analyzing.

But the output_fields in the JSON data is depended on the output specified in the rule. So we must enumerate these fileds in the observing rule for fetching them. This is inconvenient when analysis paltform like SIEM wants all of the available event fields.

Feature

Maybe we can increase a new field in falco rule to specify the fileds to be put into output_fileds.

current:

- rule: Event
  desc: Event
  condition: evt.num >= 0 and evt.type = execve
  output: >
    [eventname=%evt.type] dir=%evt.dir proc=%proc.name
  priority: NOTICE

better:

- rule: Event
  desc: Event
  condition: evt.num >= 0 and evt.type = execve
  output: >
    [eventname=%evt.type] dir=%evt.dir proc=%proc.name
  evidence_fields: proc.name, evt.type
  priority: NOTICE

The new evidence_fields can be like:

  • evidence_fields: proc.name, evt.type
  • evidence_fields: proc.*, evt.type
  • evidence_fields: *

* as wildcard character. dence_fields: * can fetch all of the available event fields.

@AmberSecurity AmberSecurity changed the title able to extract all available fields into output_fields [Feature request] Able to extract all available fields into output_fields Aug 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant