Skip to content

Commit 2b15f14

Browse files
Samirboustradebot-elastic
authored andcommitted
Update defense_evasion_modify_ownership_os_files.toml (#5051)
Co-authored-by: Jonhnathan <[email protected]> (cherry picked from commit 0bbad3b)
1 parent 7faf47b commit 2b15f14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

rules/windows/defense_evasion_modify_ownership_os_files.toml

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

77

88
[rule]
@@ -22,10 +22,10 @@ index = [
2222
]
2323
language = "eql"
2424
license = "Elastic License v2"
25-
name = "System File Onwership Change"
25+
name = "System File Ownership Change"
2626
note = """## Triage and analysis
2727
28-
### Investigating System File Onwership Change
28+
### Investigating System File Ownership Change
2929
3030
Adversaries may modify file or directory ownership to evade access control lists (ACLs) and access protected files.
3131
@@ -83,7 +83,7 @@ process where host.os.type == "windows" and event.type == "start" and
8383
(
8484
(process.name : "icacls.exe" and process.args : "/reset") or
8585
(process.name : "takeown.exe" and process.args : "/f") or
86-
(process.name : "/grant" and process.args : "grant" and process.args : "Everyone:F")
86+
(process.name : "icacls.exe" and process.args : "/grant" and process.args : "Everyone:F")
8787
) and
8888
process.command_line : "*.exe *C:\\Windows\\*"
8989
'''

0 commit comments

Comments
 (0)