2020-06-29 22:57:00 -06:00
|
|
|
[metadata]
|
|
|
|
|
creation_date = "2020/04/15"
|
|
|
|
|
maturity = "production"
|
2022-08-24 10:38:49 -06:00
|
|
|
updated_date = "2022/08/24"
|
|
|
|
|
min_stack_comments = "New fields added: required_fields, related_integrations, setup"
|
|
|
|
|
min_stack_version = "8.3.0"
|
2020-06-29 22:57:00 -06:00
|
|
|
|
|
|
|
|
[rule]
|
|
|
|
|
author = ["Elastic"]
|
|
|
|
|
description = """
|
|
|
|
|
Identifies when a terminal (tty) is spawned via Python. Attackers may upgrade a simple reverse shell to a fully
|
|
|
|
|
interactive tty after obtaining initial access to a host.
|
|
|
|
|
"""
|
2020-08-21 12:23:43 -05:00
|
|
|
from = "now-9m"
|
2022-01-26 11:41:12 -09:00
|
|
|
index = ["auditbeat-*", "logs-endpoint.events.*"]
|
|
|
|
|
language = "kuery"
|
2021-03-03 22:12:11 -09:00
|
|
|
license = "Elastic License v2"
|
2020-06-29 22:57:00 -06:00
|
|
|
name = "Interactive Terminal Spawned via Python"
|
|
|
|
|
risk_score = 73
|
|
|
|
|
rule_id = "d76b02ef-fc95-4001-9297-01cb7412232f"
|
|
|
|
|
severity = "high"
|
2020-10-26 13:50:45 -05:00
|
|
|
tags = ["Elastic", "Host", "Linux", "Threat Detection", "Execution"]
|
2022-04-01 13:44:35 -04:00
|
|
|
timeline_id = "e70679c2-6cde-4510-9764-4823df18f7db"
|
|
|
|
|
timeline_title = "Comprehensive Process Timeline"
|
2021-02-16 10:52:48 -09:00
|
|
|
timestamp_override = "event.ingested"
|
2022-01-26 11:41:12 -09:00
|
|
|
type = "query"
|
2020-06-29 22:57:00 -06:00
|
|
|
|
|
|
|
|
query = '''
|
2022-08-24 10:38:49 -06:00
|
|
|
event.category:process and event.type:(start or process_started) and
|
2022-04-01 13:44:35 -04:00
|
|
|
process.name:python* and
|
2022-01-26 11:41:12 -09:00
|
|
|
process.args:("import pty; pty.spawn(\"/bin/sh\")" or
|
|
|
|
|
"import pty; pty.spawn(\"/bin/dash\")" or
|
|
|
|
|
"import pty; pty.spawn(\"/bin/bash\")")
|
2020-06-29 22:57:00 -06:00
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[rule.threat]]
|
|
|
|
|
framework = "MITRE ATT&CK"
|
|
|
|
|
[[rule.threat.technique]]
|
|
|
|
|
id = "T1059"
|
2020-09-24 01:03:29 -05:00
|
|
|
name = "Command and Scripting Interpreter"
|
2020-06-29 22:57:00 -06:00
|
|
|
reference = "https://attack.mitre.org/techniques/T1059/"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[rule.threat.tactic]
|
|
|
|
|
id = "TA0002"
|
|
|
|
|
name = "Execution"
|
|
|
|
|
reference = "https://attack.mitre.org/tactics/TA0002/"
|