Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions rules/false_positives/wazuh.yara
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,41 @@ rule wazuh_mitre_db: override {
condition:
filesize > 10MB and filesize < 20MB and all of them
}

rule wazuh_agentd: override {
meta:
description = "/var/ossec/bin/wazuh-agentd — Wazuh HIDS agent daemon"
rootkit = "medium"
rootkit_high = "medium"
curl_easy_exfil = "low"
load_agent_with_payload = "low"

strings:
$wazuh_agentd = "wazuh-agentd" fullword
$libwazuhext = "libwazuhext.so"
$ossec_conf = "etc/ossec.conf"
$wazuh_home = "Wazuh home directory: %s"
$reload_agent = "reloadAgent" fullword

condition:
filesize < 2MB and all of them
}

rule wazuh_syscheckd: override {
meta:
description = "/var/ossec/bin/wazuh-syscheckd — Wazuh file integrity monitoring / rootcheck daemon"
rootkit = "medium"
rootkit_high = "medium"
cmd_dev_null_quoted = "medium"
proc_s_exe = "medium"

strings:
$libwazuhext = "libwazuhext.so"
$wazuh_db_lost = "Connection with wazuh-db lost. Reconnecting."
$docker_mod = "wazuh-modulesd:docker-listener"
$cti_api = "https://cti.wazuh.com/api/v1/catalog/"
$audit_rules = "/etc/audit/rules.d/audit_rules_wazuh.rules"

condition:
filesize < 2MB and all of them
}
Loading