Firmware flashing utility executed on an endpoint
Matches process creation of the native Windows utilities that write to system or peripheral flash — the AMI and Intel BIOS programmers, vendor BIOS update executables, the open-source flashrom port, and the GPU VBIOS flashers — which is the first clause of the analytic and the only clause that is a single event. The list spans vendors and bitness variants rather than one name because it is authored here from the utilities that are redistributed as standalone binaries. It is not MITRE's: the `ToolName` knob belongs to the Linux analytic AN0475, while the Windows analytic this rule follows (AN0474) names `ParentImage` and `CommandLine`, and both are left for the reader to add as a filter — the first is what separates a vendor update chain from a hand-run flash, the second is MITRE's note that silent or forced flash flags vary by tool. A renamed or newly signed flasher defeats it, and Python-launched tooling such as chipsec is invisible on process creation because the recorded image is the interpreter. The analytic's second clause — raw access to the firmware device path, or a boot-configuration change in the same window — is a correlation Sigma cannot express, and the elevation test it also describes is omitted because the two feeds disagree on how to express it. The rule is written in the Sysmon EventID 1 process-creation vocabulary (`Image`); the Security EventID 4688 feed the analytic names calls the same path `NewProcessName` and needs a field mapping first, plus *Audit Process Creation*, which is not enabled in a default install or in the MS and CIS baselines. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0167, 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 (FolderPath endswith "\\flashrom.exe" or FolderPath endswith "\\afuwin.exe" or FolderPath endswith "\\afuwinx64.exe" or FolderPath endswith "\\afuwingui.exe" or FolderPath endswith "\\fpt.exe" or FolderPath endswith "\\fptw.exe" or FolderPath endswith "\\fptw64.exe" or FolderPath endswith "\\flash64w.exe" or FolderPath endswith "\\winflash.exe" or FolderPath endswith "\\winflash64.exe" or FolderPath endswith "\\nvflash.exe" or FolderPath endswith "\\nvflash64.exe" or FolderPath endswith "\\amdvbflash.exe" or FolderPath endswith "\\atiflash.exe")
Splunk · SPL
Run this as a search.
index=* (Image="*\\flashrom.exe" OR Image="*\\afuwin.exe" OR Image="*\\afuwinx64.exe" OR Image="*\\afuwingui.exe" OR Image="*\\fpt.exe" OR Image="*\\fptw.exe" OR Image="*\\fptw64.exe" OR Image="*\\flash64w.exe" OR Image="*\\winflash.exe" OR Image="*\\winflash64.exe" OR Image="*\\nvflash.exe" OR Image="*\\nvflash64.exe" OR Image="*\\amdvbflash.exe" OR Image="*\\atiflash.exe")Elastic · ES|QL
Run this as a search.
FROM logs-*| WHERE (TO_LOWER(process.executable) LIKE "*\\\\flashrom.exe" OR TO_LOWER(process.executable) LIKE "*\\\\afuwin.exe" OR TO_LOWER(process.executable) LIKE "*\\\\afuwinx64.exe" OR TO_LOWER(process.executable) LIKE "*\\\\afuwingui.exe" OR TO_LOWER(process.executable) LIKE "*\\\\fpt.exe" OR TO_LOWER(process.executable) LIKE "*\\\\fptw.exe" OR TO_LOWER(process.executable) LIKE "*\\\\fptw64.exe" OR TO_LOWER(process.executable) LIKE "*\\\\flash64w.exe" OR TO_LOWER(process.executable) LIKE "*\\\\winflash.exe" OR TO_LOWER(process.executable) LIKE "*\\\\winflash64.exe" OR TO_LOWER(process.executable) LIKE "*\\\\nvflash.exe" OR TO_LOWER(process.executable) LIKE "*\\\\nvflash64.exe" OR TO_LOWER(process.executable) LIKE "*\\\\amdvbflash.exe" OR TO_LOWER(process.executable) LIKE "*\\\\atiflash.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="Image" type="pcre2">(?i)(\\flashrom\.exe$|\\afuwin\.exe$|\\afuwinx64\.exe$|\\afuwingui\.exe$|\\fpt\.exe$|\\fptw\.exe$|\\fptw64\.exe$|\\flash64w\.exe$|\\winflash\.exe$|\\winflash64\.exe$|\\nvflash\.exe$|\\nvflash64\.exe$|\\amdvbflash\.exe$|\\atiflash\.exe$)</field> <description>Firmware flashing utility executed on an endpoint</description> <mitre> <id>T1495</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.