5fcece8416
Co-Authored-By: Brent Murphy <56412096+bm11100@users.noreply.github.com> Co-Authored-By: Craig Chamberlain <randomuserid@users.noreply.github.com> Co-Authored-By: David French <56409778+threat-punter@users.noreply.github.com> Co-Authored-By: Derek Ditch <dcode@users.noreply.github.com> Co-Authored-By: Justin Ibarra <brokensound77@users.noreply.github.com>
34 lines
915 B
TOML
34 lines
915 B
TOML
[metadata]
|
|
creation_date = "2020/02/18"
|
|
ecs_version = ["1.4.0"]
|
|
maturity = "production"
|
|
updated_date = "2020/02/18"
|
|
|
|
[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.
|
|
""",
|
|
]
|
|
index = ["auditbeat-*"]
|
|
language = "kuery"
|
|
license = "Elastic License"
|
|
name = "Strace Process Activity"
|
|
references = ["https://en.wikipedia.org/wiki/Strace"]
|
|
risk_score = 21
|
|
rule_id = "d6450d4e-81c6-46a3-bd94-079886318ed5"
|
|
severity = "low"
|
|
tags = ["Elastic", "Linux"]
|
|
type = "query"
|
|
|
|
query = '''
|
|
process.name:strace and event.action:executed
|
|
'''
|
|
|