Files
sigma-rules/rules_building_block/discovery_system_time_discovery.toml
T

68 lines
1.7 KiB
TOML
Raw Normal View History

2023-01-18 13:01:57 +01:00
[metadata]
2024-05-23 00:45:10 +05:30
bypass_bbr_timing = true
creation_date = "2023/01/24"
integration = ["windows", "endpoint", "system"]
2023-01-18 13:01:57 +01:00
maturity = "production"
2025-03-26 20:34:14 +05:30
updated_date = "2025/03/20"
2023-01-18 13:01:57 +01:00
[rule]
author = ["Elastic"]
building_block_type = "default"
2023-01-18 13:01:57 +01:00
description = """
Detects the usage of commonly used system time discovery techniques, which attackers may use during the reconnaissance
2024-05-23 00:45:10 +05:30
phase after compromising a system.
2023-01-18 13:01:57 +01:00
"""
from = "now-9m"
2025-03-26 20:34:14 +05:30
index = [
"endgame-*",
"logs-endpoint.events.process-*",
"logs-system.security*",
"logs-windows.*",
"winlogbeat-*",
]
2023-01-18 13:01:57 +01:00
language = "eql"
license = "Elastic License v2"
name = "System Time Discovery"
risk_score = 21
rule_id = "06568a02-af29-4f20-929c-f3af281e41aa"
severity = "low"
2024-05-23 00:45:10 +05:30
tags = [
"Domain: Endpoint",
"OS: Windows",
"Use Case: Threat Detection",
"Tactic: Discovery",
"Data Source: Elastic Defend",
"Data Source: Elastic Endgame",
"Rule Type: BBR",
"Data Source: Windows Security Event Logs",
2024-05-23 00:45:10 +05:30
]
2023-01-18 13:01:57 +01:00
timestamp_override = "event.ingested"
type = "eql"
query = '''
process where host.os.type == "windows" and event.type == "start" and
2023-01-18 13:01:57 +01:00
(
(
(process.name: "net.exe" or (process.name : "net1.exe" and not process.parent.name : "net.exe")) and
process.args : "time" and not process.args : "/set"
) or
2023-01-18 13:01:57 +01:00
(process.name: "w32tm.exe" and process.args: "/tz") or
(process.name: "tzutil.exe" and process.args: "/g")
) and not user.id : ("S-1-5-18", "S-1-5-19", "S-1-5-20")
2023-01-18 13:01:57 +01:00
'''
2024-05-23 00:45:10 +05:30
2023-01-18 13:01:57 +01:00
[[rule.threat]]
framework = "MITRE ATT&CK"
[[rule.threat.technique]]
id = "T1124"
name = "System Time Discovery"
reference = "https://attack.mitre.org/techniques/T1124/"
2024-05-23 00:45:10 +05:30
2023-01-18 13:01:57 +01:00
[rule.threat.tactic]
id = "TA0007"
name = "Discovery"
reference = "https://attack.mitre.org/tactics/TA0007/"
2024-05-23 00:45:10 +05:30