Falco → SIEM export patterns

Definition

Falco is an open-source runtime security tool that monitors system behavior to detect suspicious activity. It can be integrated with Security Information and Event Management (SIEM) systems to export detected events for further analysis and correlation. This integration allows organizations to leverage Falco’s real-time threat detection capabilities within their broader security monitoring and incident response workflows.

Secure Settings Example

falco:
  rules_file: /etc/falco/falco_rules.yaml
  json_output: true
  http_output:
    enabled: true
    url: http://siem-server:9200
    user: falco_user
    password: secure_password
  syslog_output:
    enabled: true
    host: siem-server
    port: 514
    protocol: tcp

Insecure Settings Example

falco:
  rules_file: /etc/falco/falco_rules.yaml
  json_output: false
  http_output:
    enabled: true
    url: http://siem-server:9200
    user: falco_user
    password: insecure_password
  syslog_output:
    enabled: true
    host: siem-server
    port: 514
    protocol: udp