2020-06-29 22:57:00 -06:00
|
|
|
[metadata]
|
|
|
|
|
creation_date = "2020/02/18"
|
|
|
|
|
maturity = "production"
|
2021-03-03 22:12:11 -09:00
|
|
|
updated_date = "2021/03/03"
|
2020-06-29 22:57:00 -06:00
|
|
|
|
|
|
|
|
[rule]
|
|
|
|
|
author = ["Elastic"]
|
|
|
|
|
description = """
|
|
|
|
|
Strace runs in a privileged context and can be used to escape restrictive environments by instantiating a shell in order
|
|
|
|
|
to elevate privileges or move laterally.
|
|
|
|
|
"""
|
|
|
|
|
false_positives = [
|
|
|
|
|
"""
|
|
|
|
|
Strace is a dual-use tool that can be used for benign or malicious activity. Some normal use of this command may
|
|
|
|
|
originate from developers or SREs engaged in debugging or system call tracing.
|
|
|
|
|
""",
|
|
|
|
|
]
|
2020-08-21 12:23:43 -05:00
|
|
|
from = "now-9m"
|
2020-08-03 15:46:57 -04:00
|
|
|
index = ["auditbeat-*", "logs-endpoint.events.*"]
|
2020-06-29 22:57:00 -06:00
|
|
|
language = "kuery"
|
2021-03-03 22:12:11 -09:00
|
|
|
license = "Elastic License v2"
|
2020-06-29 22:57:00 -06:00
|
|
|
name = "Strace Process Activity"
|
|
|
|
|
references = ["https://en.wikipedia.org/wiki/Strace"]
|
|
|
|
|
risk_score = 21
|
|
|
|
|
rule_id = "d6450d4e-81c6-46a3-bd94-079886318ed5"
|
|
|
|
|
severity = "low"
|
2020-10-26 13:50:45 -05:00
|
|
|
tags = ["Elastic", "Host", "Linux", "Threat Detection"]
|
2021-02-16 10:52:48 -09:00
|
|
|
timestamp_override = "event.ingested"
|
2020-06-29 22:57:00 -06:00
|
|
|
type = "query"
|
|
|
|
|
|
|
|
|
|
query = '''
|
2020-07-07 13:43:33 -05:00
|
|
|
event.category:process and event.type:(start or process_started) and process.name:strace
|
2020-06-29 22:57:00 -06:00
|
|
|
'''
|
|
|
|
|
|