Browser profile artefact named on a non-browser command line
AN0037's process-creation leg: a shell, copy or extraction utility created with a browser profile location on its command line — the Chromium-family `User Data` trees for Chrome, Edge, Brave, Chromium and Opera, the Firefox `Profiles` directory, and the Firefox history and autofill databases places.sqlite and formhistory.sqlite. That path set is MITRE's `TargetPathRegex` knob, populated here with the default per-browser layouts; a site that redirects profiles onto a network share must add its own path. The image gate is not optional decoration. Chrome, Edge and every one of their renderer, GPU and utility child processes carry `--user-data-dir=…` pointing at the profile on their own command lines, so a path-only rule of the shape used for T1539 and T1555.003 would match thousands of times an hour per host and match the browser itself almost every time. Anchoring on a non-browser tool is what makes the path meaningful, and it is also this rule's main limit: an implant that opens the History or Web Data SQLite file through its own code writes no command line at all and is invisible here. Overlap with the published T1539 and T1555.003 rules is real and worth knowing before you triage. Those two key on Cookies, Login Data, logins.json and key4.db; the Firefox entries here (places.sqlite, formhistory.sqlite) are disjoint from them, but the Chromium entries are directory prefixes, so a command line naming `…\Google\Chrome\User Data\Default\Login Data` satisfies this rule as well as the credential-access one. Treat a lone T1217 hit as discovery and a simultaneous T1539 or T1555.003 hit as the stronger claim. Not attempted here: AN0037's PowerShell leg, since 4103/4104 is a separate logsource needing its own rule and its own Script Block Logging prerequisite, and its Sysmon EventID 11 leg, which sees the export file being written rather than the browser data being read. The Linux and macOS arms AN0038 and AN0039 are separate logsources as well. Prerequisite: the brief maps this to Sysmon EventID 1, so the fields are Sysmon's and the rule is blind unless Sysmon is installed and its configuration does not exclude these images; on a Security 4688 feed the field names must be remapped to NewProcessName, and CommandLine there needs the separate Include command line in process creation events policy. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0013, not hand-written and not tested by its author. Any lab result is on this rule's own page.Full descriptionShow less
The detection
The 4 SIEM queries below are previews produced by Siemphony’s own translator, not pySigma, and none has been executed against a real backend — review before you deploy.
detection.yml
Sentinel · KQL
Run this as a search.
DeviceProcessEvents| where ((ProcessCommandLine contains "\\Google\\Chrome\\User Data" or ProcessCommandLine contains "\\Microsoft\\Edge\\User Data" or ProcessCommandLine contains "\\BraveSoftware\\Brave-Browser\\User Data" or ProcessCommandLine contains "\\Chromium\\User Data" or ProcessCommandLine contains "\\Mozilla\\Firefox\\Profiles" or ProcessCommandLine contains "\\Opera Software\\Opera Stable" or ProcessCommandLine contains "places.sqlite" or ProcessCommandLine contains "formhistory.sqlite") and (FolderPath endswith "\\cmd.exe" or FolderPath endswith "\\powershell.exe" or FolderPath endswith "\\pwsh.exe" or FolderPath endswith "\\findstr.exe" or FolderPath endswith "\\xcopy.exe" or FolderPath endswith "\\robocopy.exe" or FolderPath endswith "\\tar.exe" or FolderPath endswith "\\esentutl.exe" or FolderPath endswith "\\certutil.exe" or FolderPath endswith "\\sqlite3.exe" or FolderPath endswith "\\7z.exe"))
Splunk · SPL
Run this as a search.
index=* ((CommandLine="*\\Google\\Chrome\\User Data*" OR CommandLine="*\\Microsoft\\Edge\\User Data*" OR CommandLine="*\\BraveSoftware\\Brave-Browser\\User Data*" OR CommandLine="*\\Chromium\\User Data*" OR CommandLine="*\\Mozilla\\Firefox\\Profiles*" OR CommandLine="*\\Opera Software\\Opera Stable*" OR CommandLine="*places.sqlite*" OR CommandLine="*formhistory.sqlite*") AND (Image="*\\cmd.exe" OR Image="*\\powershell.exe" OR Image="*\\pwsh.exe" OR Image="*\\findstr.exe" OR Image="*\\xcopy.exe" OR Image="*\\robocopy.exe" OR Image="*\\tar.exe" OR Image="*\\esentutl.exe" OR Image="*\\certutil.exe" OR Image="*\\sqlite3.exe" OR Image="*\\7z.exe"))Elastic · ES|QL
Run this as a search.
FROM logs-*| WHERE ((TO_LOWER(process.command_line) LIKE "*\\\\google\\\\chrome\\\\user data*" OR TO_LOWER(process.command_line) LIKE "*\\\\microsoft\\\\edge\\\\user data*" OR TO_LOWER(process.command_line) LIKE "*\\\\bravesoftware\\\\brave-browser\\\\user data*" OR TO_LOWER(process.command_line) LIKE "*\\\\chromium\\\\user data*" OR TO_LOWER(process.command_line) LIKE "*\\\\mozilla\\\\firefox\\\\profiles*" OR TO_LOWER(process.command_line) LIKE "*\\\\opera software\\\\opera stable*" OR TO_LOWER(process.command_line) LIKE "*places.sqlite*" OR TO_LOWER(process.command_line) LIKE "*formhistory.sqlite*") AND (TO_LOWER(process.executable) LIKE "*\\\\cmd.exe" OR TO_LOWER(process.executable) LIKE "*\\\\powershell.exe" OR TO_LOWER(process.executable) LIKE "*\\\\pwsh.exe" OR TO_LOWER(process.executable) LIKE "*\\\\findstr.exe" OR TO_LOWER(process.executable) LIKE "*\\\\xcopy.exe" OR TO_LOWER(process.executable) LIKE "*\\\\robocopy.exe" OR TO_LOWER(process.executable) LIKE "*\\\\tar.exe" OR TO_LOWER(process.executable) LIKE "*\\\\esentutl.exe" OR TO_LOWER(process.executable) LIKE "*\\\\certutil.exe" OR TO_LOWER(process.executable) LIKE "*\\\\sqlite3.exe" OR TO_LOWER(process.executable) LIKE "*\\\\7z.exe"))
Wazuh · XML rule
Deploy to your manager — this is a rule, not a search.
<group name="sigma,windows,process_creation,"> <!-- Rule ids must be unique on your manager; 100000+ is the user range. --> <rule id="100000" level="7"> <!-- Set <if_sid> to the decoder/base rule for windows so this only evaluates relevant events. --> <field name="CommandLine" type="pcre2">(?i)(\\Google\\Chrome\\User Data|\\Microsoft\\Edge\\User Data|\\BraveSoftware\\Brave-Browser\\User Data|\\Chromium\\User Data|\\Mozilla\\Firefox\\Profiles|\\Opera Software\\Opera Stable|places\.sqlite|formhistory\.sqlite)</field> <field name="Image" type="pcre2">(?i)(\\cmd\.exe$|\\powershell\.exe$|\\pwsh\.exe$|\\findstr\.exe$|\\xcopy\.exe$|\\robocopy\.exe$|\\tar\.exe$|\\esentutl\.exe$|\\certutil\.exe$|\\sqlite3\.exe$|\\7z\.exe$)</field> <description>Browser profile artefact named on a non-browser command line</description> <mitre> <id>T1217</id> </mitre> </rule></group>
Verdicts · reactions · comments
Community
Verdicts from engineers who actually deployed it, and the conversation around it.
Nobody has run this in a real environment and said what happened.
Verdicts from engineers who deployed it
0 castNo verdicts reported yet. The first one is worth more than the tenth — say what you ran it against.
Log in to report a verdict.
Log in to join the discussion.
No comments yet. Someone who deploys this will have something to say about it.