c1a0438f45
* replaced/removed all revoked/deprecated techniques * tests will fail on revoked (changed) techniques * tests will fail on deprecated techniques * tests will fail when techniques are mapped to an invalid tactic
47 lines
1.2 KiB
TOML
47 lines
1.2 KiB
TOML
[metadata]
|
|
creation_date = "2020/11/03"
|
|
maturity = "production"
|
|
updated_date = "2020/12/09"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = """
|
|
Timestomping is an anti-forensics technique which is used to modify the timestamps of a file, often to mimic files that
|
|
are in the same folder.
|
|
"""
|
|
from = "now-9m"
|
|
index = ["auditbeat-*", "logs-endpoint.events.*"]
|
|
language = "eql"
|
|
license = "Elastic License"
|
|
max_signals = 33
|
|
name = "Timestomping using Touch Command"
|
|
risk_score = 47
|
|
rule_id = "b0046934-486e-462f-9487-0d4cf9e429c6"
|
|
severity = "medium"
|
|
tags = ["Elastic", "Host", "Linux", "macOS", "Threat Detection", "Defense Evasion"]
|
|
type = "eql"
|
|
|
|
query = '''
|
|
process where event.type in ("start", "process_started") and
|
|
process.name == "touch" and wildcard(process.args, "-r", "-t", "-a*","-m*")
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1070"
|
|
name = "Indicator Removal on Host"
|
|
reference = "https://attack.mitre.org/techniques/T1070/"
|
|
[[rule.threat.technique.subtechnique]]
|
|
id = "T1070.006"
|
|
name = "Timestomp"
|
|
reference = "https://attack.mitre.org/techniques/T1070/006/"
|
|
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0005"
|
|
name = "Defense Evasion"
|
|
reference = "https://attack.mitre.org/tactics/TA0005/"
|
|
|