2065af89b1
* Add new categorization tags * Change updated_date to 2020/10/26 Co-authored-by: Ross Wolf <31489089+rw-access@users.noreply.github.com>, @bm11100
31 lines
864 B
TOML
31 lines
864 B
TOML
[metadata]
|
|
creation_date = "2020/02/18"
|
|
ecs_version = ["1.6.0"]
|
|
maturity = "production"
|
|
updated_date = "2020/10/26"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = "Identifies processes running in a temporary folder. This is sometimes done by adversaries to hide malware."
|
|
false_positives = [
|
|
"""
|
|
Build systems, like Jenkins, may start processes in the `/tmp` directory. These can be exempted by name or by
|
|
username.
|
|
""",
|
|
]
|
|
from = "now-9m"
|
|
index = ["auditbeat-*", "logs-endpoint.events.*"]
|
|
language = "kuery"
|
|
license = "Elastic License"
|
|
name = "Unusual Process Execution - Temp"
|
|
risk_score = 47
|
|
rule_id = "df959768-b0c9-4d45-988c-5606a2be8e5a"
|
|
severity = "medium"
|
|
tags = ["Elastic", "Host", "Linux", "Threat Detection"]
|
|
type = "query"
|
|
|
|
query = '''
|
|
event.category:process and event.type:(start or process_started) and process.working_directory:/tmp
|
|
'''
|
|
|