[Rule Tuning] Potential Linux Hack Tool Launched (#4191)

This commit is contained in:
Ruben Groenewoud
2024-10-25 17:23:48 +02:00
committed by GitHub
parent b0bba39007
commit 9e4fce6586
@@ -2,7 +2,7 @@
creation_date = "2023/09/22"
integration = ["endpoint", "auditd_manager"]
maturity = "production"
updated_date = "2024/05/21"
updated_date = "2024/10/22"
[rule]
author = ["Elastic"]
@@ -56,10 +56,10 @@ tags = [
]
timestamp_override = "event.ingested"
type = "eql"
query = '''
process where host.os.type == "linux" and event.type == "start" and event.action in ("exec", "exec_event", "executed", "process_started")
and process.name in (
process where host.os.type == "linux" and event.type == "start" and
event.action in ("exec", "exec_event", "executed", "process_started") and
process.name in~ (
// exploitation frameworks
"crackmapexec", "msfconsole", "msfvenom", "sliver-client", "sliver-server", "havoc",
// network scanners (nmap left out to reduce noise)
@@ -73,11 +73,11 @@ process where host.os.type == "linux" and event.type == "start" and event.action
// cracking and brute forcing
"john", "hashcat", "hydra", "ncrack", "cewl", "fcrackzip", "rainbowcrack",
// host and network
"linenum.sh", "linpeas.sh", "pspy32", "pspy32s", "pspy64", "pspy64s", "binwalk", "evil-winrm"
"linenum.sh", "linpeas.sh", "pspy32", "pspy32s", "pspy64", "pspy64s", "binwalk", "evil-winrm",
"linux-exploit-suggester-2.pl", "linux-exploit-suggester.sh", "panix.sh"
)
'''
[[rule.threat]]
framework = "MITRE ATT&CK"
@@ -85,4 +85,3 @@ framework = "MITRE ATT&CK"
id = "TA0002"
name = "Execution"
reference = "https://attack.mitre.org/tactics/TA0002/"