Skip to content

Commit bbebf4e

Browse files
w0rk3rtradebot-elastic
authored andcommitted
[Rule Tuning] Mark some field optional for 3rd party compatibility (#5135)
* [Rule Tuning] Mark some field optional for 3rd party compatibility * bump (cherry picked from commit cd6c37e)
1 parent 561aaa8 commit bbebf4e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

rules/windows/command_and_control_dns_susp_tld.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
creation_date = "2025/08/20"
33
integration = ["endpoint", "windows", "sentinel_one_cloud_funnel", "crowdstrike"]
44
maturity = "production"
5-
updated_date = "2025/09/05"
5+
updated_date = "2025/09/18"
66

77
[rule]
88
author = ["Elastic"]
@@ -79,7 +79,7 @@ network where host.os.type == "windows" and dns.question.name != null and
7979
"java.exe", "javaw.exe", "*.pif", "*.com", "*.scr") or
8080
(?process.code_signature.trusted == false or ?process.code_signature.exists == false) or
8181
?process.code_signature.subject_name : ("AutoIt Consulting Ltd", "OpenJS Foundation", "Python Software Foundation") or
82-
process.executable : ("?:\\Users\\*.exe", "?:\\ProgramData\\*.exe")
82+
?process.executable : ("?:\\Users\\*.exe", "?:\\ProgramData\\*.exe")
8383
) and
8484
dns.question.name regex """.*\.(top|buzz|xyz|rest|ml|cf|gq|ga|onion|monster|cyou|quest|cc|bar|cfd|click|cam|surf|tk|shop|club|icu|pw|ws|online|fun|life|boats|store|hair|skin|motorcycles|christmas|lol|makeup|mom|bond|beauty|biz|live|work|zip|country|accountant|date|party|science|loan|win|men|faith|review|racing|download|host)"""
8585
'''

rules/windows/defense_evasion_regmod_remotemonologue.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
creation_date = "2025/04/14"
33
integration = ["endpoint", "m365_defender", "sentinel_one_cloud_funnel", "windows"]
44
maturity = "production"
5-
updated_date = "2025/08/08"
5+
updated_date = "2025/09/18"
66

77
[rule]
88
author = ["Elastic"]
@@ -111,7 +111,7 @@ registry where host.os.type == "windows" and event.action != "deletion" and
111111
"HKLM\\SOFTWARE\\Microsoft\\Office\\ClickToRun\\VREGISTRY_*",
112112
"\\REGISTRY\\MACHINE\\SOFTWARE\\Microsoft\\Office\\ClickToRun\\VREGISTRY_*"
113113
) or
114-
(process.executable : "C:\\windows\\System32\\msiexec.exe" and user.id : "S-1-5-18")
114+
(process.executable : "C:\\windows\\System32\\msiexec.exe" and ?user.id : "S-1-5-18")
115115
)
116116
'''
117117

rules/windows/execution_windows_powershell_susp_args.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
creation_date = "2024/09/06"
33
integration = ["endpoint", "windows", "system", "sentinel_one_cloud_funnel", "m365_defender", "crowdstrike"]
44
maturity = "production"
5-
updated_date = "2025/09/01"
5+
updated_date = "2025/09/18"
66

77
[rule]
88
author = ["Elastic"]
@@ -85,7 +85,7 @@ process where host.os.type == "windows" and event.type == "start" and
8585
process.name : "powershell.exe" and
8686
8787
not (
88-
user.id == "S-1-5-18" and
88+
?user.id == "S-1-5-18" and
8989
/* Don't apply the user.id exclusion to Sysmon for compatibility */
9090
not event.dataset : ("windows.sysmon_operational", "windows.sysmon")
9191
) and

0 commit comments

Comments
 (0)