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)