Windows Process Creation: Suspicious calc.exe Command-Line Usage Outside System Locations

Alerts on suspicious calc.exe launches via command-line parameters or execution from non-standard Windows directories.

FreeReviewedSigma · High · v2
Product
windows
Category
process_creation
Author
Florian Roth (Nextron Systems) (SigmaHQ), DRL 1.1
Published
2019-02-09
Updated
2026-07-31
title: "Windows Process Creation: Suspicious calc.exe Command-Line Usage Outside System Locations"
id: 7cfe42ab-dbaa-4ab5-a52b-528d3ac20947
status: test
description: Flags Windows process creation events where calc.exe is launched with command-line parameters or where the calc.exe image path does not match common system directories. Attackers often use built-in Windows binaries like calc.exe for living-off-the-land testing, probing, or to blend in with legitimate activity. This rule relies on process creation telemetry, specifically the Image path and CommandLine contents to identify suspicious execution context.
references:
  - https://twitter.com/ItsReallyNick/status/1094080242686312448
  - https://github.com/SigmaHQ/sigma/blob/master/rules/windows/process_creation/proc_creation_win_calc_uncommon_exec.yml
author: Florian Roth (Nextron Systems), Huntrule Team
date: 2019-02-09
modified: 2023-11-09
tags:
  - attack.stealth
  - attack.t1036
logsource:
  category: process_creation
  product: windows
detection:
  selection_1:
    CommandLine|contains: "\\calc.exe "
  selection_2:
    Image|endswith: \calc.exe
  filter_main_known_locations:
    Image|contains:
      - :\Windows\System32\
      - :\Windows\SysWOW64\
      - :\Windows\WinSxS\
  condition: selection_1 or ( selection_2 and not filter_main_known_locations )
falsepositives:
  - Unknown
level: high
license: DRL-1.1
related:
  - id: 737e618a-a410-49b5-bec3-9e55ff7fbc15
    type: derived