Sensitive File Copy via Ditto
Description
Detects ditto binary copying sensitive files like keychains, browser data, and shell history. This technique is used by malware for credential harvesting and data collection.
Query · eql
process where event.type == "start" and event.action == "exec" and process.name == "ditto" and
process.args_count == 3 and process.args like~ ("/Users/*/Library/Application Support/Google/Chrome/Default/*",
"/Library/Keychains/System.keychain",
"/Users/*/Library/Keychains/login.keychain-db",
"/Users/*/.zsh_history",
"/Users/*/.bash_history")