Adduser

Category: backdoor · Aliases: None known · Sample count (EMBER 2018): 4 · Enrichment: expert-seo · Updated: 2026-06-09
Category: BackdoorActor: Unknown / CybercriminalIndustry: Global / OpportunisticMotivation: Opportunistic

Overview

HackTool:Win32/Adduser (often classified as a Potentially Unwanted Program or a malicious utility) is a simple but highly effective tool used by attackers during the 'post-exploitation' phase of an attack. It is not an exploit itself, but rather a script or small executable designed to automate the creation of rogue local or domain administrator accounts, ensuring persistent, highly privileged access to the compromised system or network.

Understanding Adduser (Post-Exploitation Utilities)
To an end-user, the execution of Adduser is invisible. For a security team, the detection of an Adduser tool is a massive red flag. It indicates that an attacker has already bypassed initial defenses, successfully escalated privileges (as creating an admin account requires admin rights), and is actively establishing a permanent backdoor into the environment, independent of the original vulnerability they exploited.

Execution and Persistence Mechanics
Adduser utilities are typically deployed via a reverse shell, PsExec, or after an attacker successfully exploits a vulnerability that grants `SYSTEM` or `Administrator` access (`T1068`). The tool itself often just acts as a wrapper for native Windows commands. It executes commands like `net user [username] [password] /add` followed by `net localgroup administrators [username] /add` (`T1136.001`). In a domain environment, if executed on a Domain Controller or with Domain Admin rights, it may use `net user /domain` to create a new Domain Admin (`T1136.002`). To evade detection, attackers often name these rogue accounts deceptively, such as 'ServiceAdmin', 'BackupAgent', or mimic the names of recently departed employees.

Indicators of Compromise & Impact
The impact is total, persistent administrative compromise of the host or domain. Host-based IoCs include EDR alerts for the execution of `net.exe` or `net1.exe` with arguments containing `/add`, especially when spawned from a web shell, PowerShell, or an unusual parent process. The primary IoC is the generation of Windows Security Event ID 4720 (A user account was created) followed closely by Event ID 4732 (A member was added to a security-enabled local group).

MITRE ATT&CK Techniques

Observed techniques used by this family, mapped to the MITRE ATT&CK framework:

TechniqueNameTactic
T1136.001Create Account: Local Account (net user /add)Persistence
T1136.002Create Account: Domain AccountPersistence
T1059.003Command and Scripting Interpreter: Windows Command ShellExecution

Tactical Mitigations

Based on the techniques used by this family, consider the following defensive strategies:

Generated Detections (Boilerplate)

These YARA and Sigma rules are auto-generated based on the family name and aliases. They must be heavily tuned before deployment in a production environment.

YARA Rule

rule MALWARE_WIN_ADDUSER {
    meta:
        description = "Detects Adduser (backdoor)"
        author = "SystemHelpdesk Boilerplate Generator"
        date = "2026-07-06"
    strings:
        $s1 = "adduser" ascii wide nocase
    condition:
        uint16(0) == 0x5a4d and any of them
}

Sigma Rule

title: Suspicious Adduser Activity
id: a8d729744cce939323d37f1789be0d4f
status: experimental
description: Detects generic indicators of the adduser malware family.
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        Image|endswith:
            - '\cmd.exe'
            - '\powershell.exe'
        CommandLine|contains:
            - "*adduser*"
    condition: selection
level: medium

Containment & Response Steps

Home Users: If you suspect a malware infection on your personal device, disconnect from the internet immediately and run a full system scan with your antivirus software. The steps below are intended for IT professionals responding to enterprise incidents.

Ordered checklist for responders. Adapt to your environment and engage professional support for active incidents.

  1. Immediately disable (do not delete yet, for forensic purposes) any rogue accounts created by the tool.
  2. Isolate the endpoint where the command was executed; if the tool was run successfully, the attacker already has SYSTEM-level access to that machine.
  3. Audit all Active Directory and Local Administrator groups across the network to ensure no other unauthorized accounts have been created.
  4. Conduct a full root-cause analysis to determine how the attacker gained the initial administrative privileges required to run the Adduser tool.

What to Avoid

Common mistakes during response to this family that can destroy evidence, spread the infection, or worsen recovery.

  1. Do not assume that deleting the rogue account removes the attacker; if they have `SYSTEM` access, they likely have deployed other backdoors (like scheduled tasks or web shells).
  2. Avoid ignoring alerts for `net.exe /add`; while sometimes used by legitimate IT scripts, it is one of the most common techniques used by ransomware operators and APTs to maintain access.

References & External Analysis

Frequently Asked Questions

How do I remove the Adduser Backdoor from Windows?

Manual removal of Adduser is highly discouraged as it may leave persistence mechanisms intact. We recommend disconnecting the device from the internet and utilizing a professional incident response service or enterprise-grade EDR software to conduct a full forensic sweep.

Is Adduser a virus or a Backdoor?

Adduser is classified as a Backdoor. Unlike traditional viruses that infect files, modern malware like Adduser typically operates as a standalone payload designed to compromise systems, steal data, or deploy secondary stage implants.

What are the main symptoms of a Adduser infection?

Symptoms of Adduser can include unexpected system slowness, unauthorized outbound network traffic to unknown IP addresses, disabled security software, and suspicious background processes running from AppData or Temp directories.

Related Families (Category: backdoor)

Explore other malware families in the same category:

Protect Your Network Against Backdoors

Want to prevent Adduser and similar threats from compromising your organization? Read our comprehensive defensive guide: Backdoor & RAT Protection.

Need help with an active incident? Published by the SystemHelpdesk team.

Machine-readable

Get this profile as JSON: https://jordanricky1604-ship-it.github.io/malware-families-catalog/api/adduser.json

Ecosystem & Interactive Environments

This profile is part of the Malware Families Catalog, a public dataset of 2,899 malware families. The catalog is also published across our ecosystem: Hugging Face, Kaggle, Zenodo, Replit, StackBlitz, CodeSandbox, and CodePen.