← Back to SOC feed Coverage →

New Process Created Via Taskmgr.EXE

sigma LOW SigmaHQ
T1036
imProcessCreate
evasion
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at SigmaHQ →
Retrieved: 2026-05-23T03:15:01Z · Confidence: medium

Hunt Hypothesis

Detects the creation of a process via the Windows task manager. This might be an attempt to bypass UAC

Detection Rule

Sigma (Original)

title: New Process Created Via Taskmgr.EXE
id: 3d7679bd-0c00-440c-97b0-3f204273e6c7
status: test
description: Detects the creation of a process via the Windows task manager. This might be an attempt to bypass UAC
references:
    - https://twitter.com/ReneFreingruber/status/1172244989335810049
author: Florian Roth (Nextron Systems)
date: 2018-03-13
modified: 2024-01-18
tags:
    - attack.stealth
    - attack.t1036
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        ParentImage|endswith: '\taskmgr.exe'
    filter_main_generic:
        Image|endswith:
            - ':\Windows\System32\mmc.exe'
            - ':\Windows\System32\resmon.exe'
            - ':\Windows\System32\Taskmgr.exe'
    condition: selection and not 1 of filter_main_*
falsepositives:
    - Administrative activity
level: low

KQL (Azure Sentinel)

imProcessCreate
| where (ParentProcessName endswith "\\taskmgr.exe" or ActingProcessName endswith "\\taskmgr.exe") and (not((TargetProcessName endswith ":\\Windows\\System32\\mmc.exe" or TargetProcessName endswith ":\\Windows\\System32\\resmon.exe" or TargetProcessName endswith ":\\Windows\\System32\\Taskmgr.exe")))

Required Data Sources

Sentinel TableNotes
imProcessCreateEnsure this data connector is enabled

False Positive Guidance

MITRE ATT&CK Context

References

Original source: https://github.com/SigmaHQ/sigma/blob/master/rules/windows/process_creation/proc_creation_win_taskmgr_susp_child_process.yml