mirror of
https://github.com/Karma-X-Inc/protections-artifacts
synced 2026-06-08 11:28:09 +00:00
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[rule]
|
|
description = """
|
|
Detects the use of specific commandline arguments that can be used with certain Electron based applications to covertly
|
|
execute code for a variety of purposes.
|
|
"""
|
|
id = "1f1b8910-e6b3-4d9d-9bf0-7a7728f5bce6"
|
|
license = "Elastic License v2"
|
|
name = "Suspicious Electron Command Execution"
|
|
os_list = ["macos"]
|
|
reference = ["https://medium.com/@MalFuzzer/one-electron-to-rule-them-all-dc2e9b263daf"]
|
|
version = "1.0.8"
|
|
|
|
query = '''
|
|
process where event.type == "start" and event.action == "exec" and
|
|
process.command_line : ("*--gpu-launcher=?*",
|
|
"*--utility-cmd-prefix=?*",
|
|
"*--browser-subprocess-path=?*",
|
|
"*--renderer-cmd-prefix=?*")
|
|
'''
|
|
|
|
min_endpoint_version = "7.15.0"
|
|
optional_actions = []
|
|
[[actions]]
|
|
action = "kill_process"
|
|
field = "process.entity_id"
|
|
state = 0
|
|
|
|
[[threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[threat.technique]]
|
|
id = "T1059"
|
|
name = "Command and Scripting Interpreter"
|
|
reference = "https://attack.mitre.org/techniques/T1059/"
|
|
[[threat.technique.subtechnique]]
|
|
id = "T1059.004"
|
|
name = "Unix Shell"
|
|
reference = "https://attack.mitre.org/techniques/T1059/004/"
|
|
|
|
|
|
|
|
[threat.tactic]
|
|
id = "TA0002"
|
|
name = "Execution"
|
|
reference = "https://attack.mitre.org/tactics/TA0002/"
|
|
|
|
[internal]
|
|
min_endpoint_version = "7.15.0"
|