Potential Google Credentials Phishing


Description

Identifies attempts to coerce the victim to enter their google credentials via spawning a browser child process from an unusual parent process pointing to Google signin prompt URL.

Query · eql

process where event.type == "start" and
 process.name : ("chrome.exe", "msedge.exe") and process.args : "https://youtube.com/account?=https://accounts.google.com/v?/signin/challenge/pwd" and
 process.parent.executable != null and
 not process.parent.executable in~
                     ("c:\\windows\\explorer.exe",
                      "c:\\program files\\google\\chrome\\application\\chrome_proxy.exe",
                      "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome_proxy.exe",
                      "c:\\program files\\google\\chrome\\application\\chrome.exe",
                      "c:\\Program Files (x86)\\google\\chrome\\application\\chrome.exe") and
 not (process.parent.code_signature.subject_name == "Google LLC" and process.parent.code_signature.trusted == true)
Raw source Potential Google Credentials Phishing · Elastic TOML
Esc
Published by elastic/protections-artifacts ↗, licensed under Elastic License 2.0 ↗. Reproduced here unmodified.
[rule]
description = """
Identifies attempts to coerce the victim to enter their google credentials via spawning a browser child process from an
unusual parent process pointing to Google signin prompt URL.
"""
id = "ff2c7c15-92ee-4cb5-83be-6c1b0f7dc28f"
license = "Elastic License v2"
name = "Potential Google Credentials Phishing"
os_list = ["windows"]
version = "1.0.2"

query = '''
process where event.type == "start" and
 process.name : ("chrome.exe", "msedge.exe") and process.args : "https://youtube.com/account?=https://accounts.google.com/v?/signin/challenge/pwd" and
 process.parent.executable != null and
 not process.parent.executable in~
                     ("c:\\windows\\explorer.exe",
                      "c:\\program files\\google\\chrome\\application\\chrome_proxy.exe",
                      "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome_proxy.exe",
                      "c:\\program files\\google\\chrome\\application\\chrome.exe",
                      "c:\\Program Files (x86)\\google\\chrome\\application\\chrome.exe") and
 not (process.parent.code_signature.subject_name == "Google LLC" and process.parent.code_signature.trusted == true)
'''

min_endpoint_version = "8.10.0"
[[actions]]
action = "kill_process"
field = "process.parent.entity_id"
state = 0
tree = true

[[optional_actions]]
action = "rollback"
field = "process.entity_id"
state = 0

[[threat]]
framework = "MITRE ATT&CK"
[[threat.technique]]
id = "T1566"
name = "Phishing"
reference = "https://attack.mitre.org/techniques/T1566/"


[threat.tactic]
id = "TA0001"
name = "Initial Access"
reference = "https://attack.mitre.org/tactics/TA0001/"
[[threat]]
framework = "MITRE ATT&CK"
[[threat.technique]]
id = "T1555"
name = "Credentials from Password Stores"
reference = "https://attack.mitre.org/techniques/T1555/"
[[threat.technique.subtechnique]]
id = "T1555.003"
name = "Credentials from Web Browsers"
reference = "https://attack.mitre.org/techniques/T1555/003/"



[threat.tactic]
id = "TA0006"
name = "Credential Access"
reference = "https://attack.mitre.org/tactics/TA0006/"

[internal]
min_endpoint_version = "8.10.0"

Detection rules belong to the projects that publish them and remain under their own licenses. This site indexes and links to them; it claims no rights in them.