Files
sigma-rules/rules/linux/execution_perl_tty_shell.toml
T

46 lines
1.4 KiB
TOML
Raw Normal View History

2020-06-29 22:57:00 -06:00
[metadata]
creation_date = "2020/04/16"
integration = ["endpoint"]
2020-06-29 22:57:00 -06:00
maturity = "production"
2022-08-24 10:38:49 -06:00
min_stack_comments = "New fields added: required_fields, related_integrations, setup"
min_stack_version = "8.3.0"
2023-06-22 18:38:56 -03:00
updated_date = "2023/06/22"
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"
index = ["auditbeat-*", "logs-endpoint.events.*", "endgame-*"]
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 = "Interactive Terminal Spawned via Perl"
risk_score = 73
rule_id = "05e5a668-7b51-4a67-93ab-e9af405c9ef3"
severity = "high"
2023-06-22 18:38:56 -03:00
tags = ["Domain: Endpoint", "OS: Linux", "Use Case: Threat Detection", "Tactic: Execution", "Data Source: Elastic Endgame"]
timestamp_override = "event.ingested"
2020-06-29 22:57:00 -06:00
type = "query"
query = '''
event.category:process and host.os.type:linux 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"
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/"