Potential Browser Credentials Stealer
Description
Identifies the creation of files with names related to web browser's credential store data. Adversaries may steal credentials from web browsers by reading files specific to the target browser.
Query · eql
sequence by process.entity_id with maxspan=1s
[file where event.action == "creation" and process.pid != 4 and process.executable != null and process.name != null and
not process.code_signature.status : ("trusted", "errorExpired", "errorCode_endpoint*") and
file.name : ("creditcards.db", "passwords.db", "autofilldata.db", "Google_Chome_Default.txt",
"creditcards.txt", "passwords.txt", "autofilldata.txt", "AutoFill.txt", "Bookmarks.txt", "Cards.txt") and
not (process.executable : "C:\\Program Files (x86)\\Genesys\\GenesysCloud\\GenesysCloud.exe" and file.name : "passwords.txt")]
[file where event.action == "creation" and process.pid != 4 and process.executable != null and process.name != null and
not process.code_signature.status : ("trusted", "errorExpired", "errorCode_endpoint*") and
file.name : ("creditcards.db", "passwords.db", "autofilldata.db", "Google_Chome_Default.txt",
"creditcards.txt", "passwords.txt", "autofilldata.txt", "AutoFill.txt", "Bookmarks.txt", "Cards.txt")]