Skip to content

Siemphony is in beta and still being built. What ships today, and what does not.

Siemphony’s repertoire

Camera capture libraries loaded outside known video applications

Siemphony@siemphonymediumT1125unverified
MITRE's Windows analytic opens with a non-standard process loading the camera and video-capture libraries before any video artefact reaches disk, and module load is the only one of the listed log sources that names both the loading process and the library in a single event. The selection matches the capture-specific modules MITRE cites — the Video for Windows capture shim, the kernel-streaming DirectShow proxy and the Media Foundation capture engine — while the exclusion is MITRE's AllowedProcesses knob made concrete with the conferencing, browser and streaming binaries that legitimately open a webcam. MITRE's generic mf.dll is deliberately not matched: Media Foundation core loads for any media playback and would drown the signal. The file-write and egress steps of the chain are a timed correlation that Sigma cannot express, so this rule is the device-access precursor only. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0197, not hand-written and not tested by its author. Any lab result is on this rule's own page.Full description

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.

DeviceImageLoadEvents| where ((FolderPath endswith "\\avicap32.dll" or FolderPath endswith "\\ksproxy.ax" or FolderPath endswith "\\mfcaptureengine.dll") and not ((InitiatingProcessFolderPath endswith "\\Teams.exe" or InitiatingProcessFolderPath endswith "\\ms-teams.exe" or InitiatingProcessFolderPath endswith "\\Zoom.exe" or InitiatingProcessFolderPath endswith "\\CptHost.exe" or InitiatingProcessFolderPath endswith "\\Webex.exe" or InitiatingProcessFolderPath endswith "\\slack.exe" or InitiatingProcessFolderPath endswith "\\obs64.exe" or InitiatingProcessFolderPath endswith "\\obs32.exe" or InitiatingProcessFolderPath endswith "\\WindowsCamera.exe" or InitiatingProcessFolderPath endswith "\\chrome.exe" or InitiatingProcessFolderPath endswith "\\msedge.exe" or InitiatingProcessFolderPath endswith "\\firefox.exe")))

Splunk · SPL

Run this as a search.

index=* ((ImageLoaded="*\\avicap32.dll" OR ImageLoaded="*\\ksproxy.ax" OR ImageLoaded="*\\mfcaptureengine.dll") AND NOT ((Image="*\\Teams.exe" OR Image="*\\ms-teams.exe" OR Image="*\\Zoom.exe" OR Image="*\\CptHost.exe" OR Image="*\\Webex.exe" OR Image="*\\slack.exe" OR Image="*\\obs64.exe" OR Image="*\\obs32.exe" OR Image="*\\WindowsCamera.exe" OR Image="*\\chrome.exe" OR Image="*\\msedge.exe" OR Image="*\\firefox.exe")))

Elastic · ES|QL

Run this as a search.

FROM logs-*| WHERE ((TO_LOWER(file.path) LIKE "*\\\\avicap32.dll" OR TO_LOWER(file.path) LIKE "*\\\\ksproxy.ax" OR TO_LOWER(file.path) LIKE "*\\\\mfcaptureengine.dll") AND NOT ((TO_LOWER(process.executable) LIKE "*\\\\teams.exe" OR TO_LOWER(process.executable) LIKE "*\\\\ms-teams.exe" OR TO_LOWER(process.executable) LIKE "*\\\\zoom.exe" OR TO_LOWER(process.executable) LIKE "*\\\\cpthost.exe" OR TO_LOWER(process.executable) LIKE "*\\\\webex.exe" OR TO_LOWER(process.executable) LIKE "*\\\\slack.exe" OR TO_LOWER(process.executable) LIKE "*\\\\obs64.exe" OR TO_LOWER(process.executable) LIKE "*\\\\obs32.exe" OR TO_LOWER(process.executable) LIKE "*\\\\windowscamera.exe" OR TO_LOWER(process.executable) LIKE "*\\\\chrome.exe" OR TO_LOWER(process.executable) LIKE "*\\\\msedge.exe" OR TO_LOWER(process.executable) LIKE "*\\\\firefox.exe")))

Wazuh · XML rule

Deploy to your manager — this is a rule, not a search.

<group name="sigma,windows,image_load,">  <!-- 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="ImageLoaded" type="pcre2">(?i)(\\avicap32\.dll$|\\ksproxy\.ax$|\\mfcaptureengine\.dll$)</field>    <field name="Image" negate="yes" type="pcre2">(?i)(\\Teams\.exe$|\\ms-teams\.exe$|\\Zoom\.exe$|\\CptHost\.exe$|\\Webex\.exe$|\\slack\.exe$|\\obs64\.exe$|\\obs32\.exe$|\\WindowsCamera\.exe$|\\chrome\.exe$|\\msedge\.exe$|\\firefox\.exe$)</field>    <description>Camera capture libraries loaded outside known video applications</description>    <mitre>      <id>T1125</id>    </mitre>  </rule></group>

Verdicts · reactions · comments

Community

Verdicts from engineers who actually deployed it, and the conversation around it.

Log in to react
Not yet reported on

Nobody has run this in a real environment and said what happened.

Verdicts from engineers who deployed it

0 cast

No 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.