2020-06-29 22:57:00 -06:00
|
|
|
[metadata]
|
|
|
|
|
creation_date = "2020/04/16"
|
|
|
|
|
maturity = "production"
|
2020-11-03 19:51:53 +01:00
|
|
|
updated_date = "2020/11/03"
|
2020-06-29 22:57:00 -06:00
|
|
|
|
|
|
|
|
[rule]
|
|
|
|
|
author = ["Elastic"]
|
|
|
|
|
description = """
|
|
|
|
|
Identifies when a terminal (tty) is spawned via Perl. 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"
|
2020-08-03 15:46:57 -04:00
|
|
|
index = ["auditbeat-*", "logs-endpoint.events.*"]
|
2020-06-29 22:57:00 -06:00
|
|
|
language = "kuery"
|
|
|
|
|
license = "Elastic License"
|
|
|
|
|
name = "Interactive Terminal Spawned via Perl"
|
|
|
|
|
risk_score = 73
|
|
|
|
|
rule_id = "05e5a668-7b51-4a67-93ab-e9af405c9ef3"
|
|
|
|
|
severity = "high"
|
2020-10-26 13:50:45 -05:00
|
|
|
tags = ["Elastic", "Host", "Linux", "Threat Detection", "Execution"]
|
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:perl and
|
|
|
|
|
process.args:("exec \"/bin/sh\";" or "exec \"/bin/dash\";" or "exec \"/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/"
|
|
|
|
|
|