Skip to content

Commit

Permalink
Resolve datadog-agent DDOS false positive (chainguard-dev#299)
Browse files Browse the repository at this point in the history
* Avoid datadog-agent DDOS false positive

Signed-off-by: egibs <[email protected]>

* Make ignore more generic

Signed-off-by: egibs <[email protected]>

* Revert to exact DataDog reference

Signed-off-by: egibs <[email protected]>

---------

Signed-off-by: egibs <[email protected]>
  • Loading branch information
egibs authored Jul 1, 2024
1 parent 5ecad9d commit 8323907
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rules/net/ddos.yara
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

rule ddos_refs : critical {
meta:
description = "Performs DDoS (distributed denial of service) attacks"
Expand All @@ -9,6 +8,8 @@ rule ddos_refs : critical {
$ref = "TSource Engine Query"
$ref2 = "ackflood" fullword
$ref3 = "synflood" fullword
// datadog-agent tracer-fentry-debug.o
$ignore_ref = "defer_accept.synflood_warned.you"
condition:
any of them
any of ($ref*) and not $ignore_ref
}

0 comments on commit 8323907

Please sign in to comment.