Skip to content

Commit 47f8fe7

Browse files
authored
Clean up false positives for EOL Go and Linux Test Project (#989)
Signed-off-by: egibs <20933572+egibs@users.noreply.github.com>
1 parent af4e6b5 commit 47f8fe7

2 files changed

Lines changed: 35 additions & 0 deletions

File tree

rules/false_positives/go_1.17.yara

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
rule go_1_17_override: override {
2+
meta:
3+
description = "linux_amd64/link"
4+
ARKBIRD_SOLG_APT_APT34_RDAT_Feb_2021_1 = "low"
5+
6+
strings:
7+
$build_id = "OZ4MIHRt5yYNzPxU6QuH/qAeXWMvY1RJrUXB6xka1/4fdCwddvzTvjJBZrCo2S/DCU7CoUCdrRvbKi6ROH6"
8+
9+
condition:
10+
all of them
11+
}

rules/false_positives/ltp.yara

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
rule ltp_dirtypipe_override: override {
2+
meta:
3+
description = "testcases/bin/dirtypipe"
4+
Linux_Exploit_CVE_2022_0847_e831c285 = "high"
5+
6+
strings:
7+
$dirtypipe = "@dirtypipe.c"
8+
$ltp = "LTPROOT Prefix for installed LTP (default: /opt/ltp)"
9+
10+
condition:
11+
all of them
12+
}
13+
14+
rule ltp_runsched_override: override {
15+
meta:
16+
description = "testcases/bin/run_sched_cliserv.sh"
17+
SIGNATURE_BASE_WEBSHELL_ASPX_Proxyshell_Aug15 = "harmless"
18+
19+
strings:
20+
$cmd = "pthcli 127.0.0.1 $LTPROOT/testcases/bin/data"
21+
22+
condition:
23+
all of them
24+
}

0 commit comments

Comments
 (0)