Skip to content

Commit

Permalink
Add xz-backdoor alerting rule. (#1206)
Browse files Browse the repository at this point in the history
* Added xz-backdoor alerting rule.

* Check if this fixes linter error.
  • Loading branch information
Strigix authored Jun 3, 2024
1 parent 80d4281 commit 1b32dc4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Added a new alerting rule to `falco.rules.yml` to fire an alert for XZ-backdoor.

## [4.1.2] - 2024-05-31

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,18 @@ spec:
severity: notify
team: shield
topic: security
- alert: FalcoXZBackdoorAlert
annotations:
description: |-
{{`{{ if eq $labels.k8s_pod_name "<NA>" }}The Falco rule {{ $labels.rule }} was triggered on the node {{ $labels.node }}.
{{else}}Pod {{ $labels.k8s_ns_name }}/{{ $labels.k8s_pod_name }} triggered the Falco rule {{ $labels.rule }} on the node {{ $labels.node }}.{{ end }}`}}
opsrecipe: falco-alert/
expr: falco_events{rule="Backdoored library loaded into SSHD (CVE-2024-3094)"} > 0
labels:
area: kaas
cancel_if_cluster_status_creating: "false"
cancel_if_cluster_status_deleting: "false"
cancel_if_cluster_status_updating: "false"
severity: notify
team: shield
topic: security

0 comments on commit 1b32dc4

Please sign in to comment.