Adversaries may modify a process's in-memory arguments to change its name in order to appear as a legitimate or benign process.
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill T1036.011_overwrite-process-arguments --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of T1036.011 Overwrite Process Arguments?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-t1036-011-overwrite-process-arguments)More formats (shields.io, HTML) on the badges page.
---
name: "T1036.011_overwrite-process-arguments"
description: "Adversaries may modify a process's in-memory arguments to change its name in order to appear as a legitimate or benign process."
category: "configuration"
version: "18.1"
author: "cyberstrike-official"
tags:
- mitre-attack
- enterprise
- t1036.011
- defense-evasion
- linux
- sub-technique
technique_id: "T1036.011"
tactic: "defense-evasion"
all_tactics:
- defense-evasion
platforms:
- Linux
mitre_url: "https://attack.mitre.org/techniques/T1036/011"
tech_stack:
- linux
cwe_ids:
- CWE-693
chains_with:
- T1036
- T1036.001
- T1036.002
- T1036.003
- T1036.004
- T1036.005
- T1036.006
- T1036.007
- T1036.008
- T1036.009
- T1036.010
- T1036.012
prerequisites:
- T1036
severity_boost:
T1036: "Chain with T1036 for deeper attack path"
T1036.001: "Chain with T1036.001 for deeper attack path"
T1036.002: "Chain with T1036.002 for deeper attack path"
---
# T1036.011 Overwrite Process Arguments
> **Sub-technique of:** T1036
## High-Level Description
Adversaries may modify a process's in-memory arguments to change its name in order to appear as a legitimate or benign process. On Linux, the operating system stores command-line arguments in the process’s stack and passes them to the `main()` function as the `argv` array. The first element, `argv[0]`, typically contains the process name or path - by default, the command used to actually start the process (e.g., `cat /etc/passwd`). By default, the Linux `/proc` filesystem uses this value to represent the process name. The `/proc/<PID>/cmdline` file reflects the contents of this memory, and tools like `ps` use it to display process information. Since arguments are stored in user-space memory at launch, this modification can be performed without elevated privileges.
During runtime, adversaries can erase the memory used by all command-line arguments for a process, overwriting each argument string with null bytes. This removes evidence of how the process was originally launched. They can then write a spoofed string into the memory region previously occupied by `argv[0]` to mimic a benign command, such as `cat resolv.conf`. The new command-line string is reflected in `/proc/<PID>/cmdline` and displayed by tools like `ps`.
## Kill Chain Phase
- Defense Evasion (TA0005)
**Platforms:** Linux
## What to Check
- [ ] Identify if Overwrite Process Arguments technique is applicable to target environment
- [ ] Check Linux systems for indicators of Overwrite Process Arguments
- [ ] Assess detection coverage (1 detection strategies)
## How to Test
### Manual Testing
1. **Identify Attack Surface**: Determine if the target environment is susceptible to Overwrite Process Arguments by examining the target platforms (Linux).
2. **Assess Existing Defenses**: Review whether mitigations for T1036.011 are in place. If defenses are absent or misconfigured, this technique may be exploitable.
3. **Execute Test**: Use tools and methods described in the MITRE ATT&CK page and external references below.
> **Note**: No Atomic Red Team tests available for this technique. See [Atomic Red Team GitHub](https://github.com/redcanaryco/atomic-red-team) for updates.
## Remediation Guide
No specific mitigations documented for this technique.
## Detection
### Detection Strategy for Overwritten Process Arguments Masquerading
## Risk Assessment
| Finding | Severity | Impact |
| ------------------------------------------------ | -------- | --------------- |
| Overwrite Process Arguments technique applicable | High | Defense Evasion |
## CWE Categories
| CWE ID | Title |
| ------- | ---------------------------- |
| CWE-693 | Protection Mechanism Failure |
## References
- [Microsoft XorDdos Linux Stealth 2022](https://www.microsoft.com/en-us/security/blog/2022/05/19/rise-in-xorddos-a-deeper-look-at-the-stealthy-ddos-malware-targeting-linux-devices/)
- [Sandfly BPFDoor 2022](https://sandflysecurity.com/blog/bpfdoor-an-evasive-linux-backdoor-technical-analysis/)
- [Atomic Red Team - T1036.011](https://github.com/redcanaryco/atomic-red-team/tree/master/atomics/T1036.011)
- [MITRE ATT&CK - T1036.011](https://attack.mitre.org/techniques/T1036/011)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!