Morto

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

Overview

Worm:Win32/Morto is a classic, highly aggressive network worm specifically designed to propagate across the internet and internal enterprise networks by attacking Remote Desktop Protocol (RDP) services. Unlike malware that relies on user interaction (phishing) or software vulnerabilities, Morto spreads entirely by brute-forcing weak or default administrator credentials on internet-exposed Windows machines.

Understanding Morto (RDP Worms)
To an end-user, a Morto infection might cause severe system slowdowns and a massive spike in outbound network traffic as the machine scans for new victims. For a network administrator, Morto is a loud, chaotic event that quickly saturates network bandwidth and triggers thousands of failed login alerts on domain controllers. Its primary purpose was often to install secondary payloads (like DDoS bots or adware) or simply to demonstrate the massive vulnerability of internet-facing RDP.

Execution and RDP Brute-Forcing Mechanics
Morto does not use software exploits. It constantly scans the local subnet and random internet IP blocks on port 3389 (RDP) (`T1046`). When it finds an active RDP service, it initiates a dictionary attack, attempting to log in using common usernames (like 'Administrator', 'admin') and a hardcoded list of weak passwords (`T1110.001`). Once it successfully authenticates, it uses the WTS (Windows Terminal Services) APIs or standard drive mapping (e.g., `\C$`) (`T1021.002`) to copy its executable (often named `a.exe` or disguised as a Windows system file) to the remote machine and executes it (`T1570`). Upon execution, it establishes persistence by dropping a `.dll` file into the `System32` directory and registering it as a service or modifying the `Userinit` registry key (`T1543.003`).

Indicators of Compromise & Impact
The impact is rapid, widespread compromise of Windows servers and workstations, leading to severe network congestion. Host-based IoCs include EDR alerts for thousands of failed RDP logon events (Event ID 4625), followed by a successful logon (Event ID 4624) from an unknown IP, immediately followed by the creation of a new, anomalous Windows Service. Network IoCs are characterized by massive spikes in outbound scanning activity on port 3389.

MITRE ATT&CK Techniques

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

TechniqueNameTactic
T1110.001Brute Force: Password Guessing (RDP Dictionary Attacks)Credential Access
T1021.001Remote Services: Remote Desktop ProtocolLateral Movement
T1046Network Service Discovery (Scanning for port 3389)Discovery
T1543.003Create or Modify System Process: Windows ServicePersistence

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_MORTO {
    meta:
        description = "Detects Morto (advanced_threat)"
        author = "SystemHelpdesk Boilerplate Generator"
        date = "2026-07-06"
    strings:
        $s1 = "morto" ascii wide nocase
    condition:
        uint16(0) == 0x5a4d and any of them
}

Sigma Rule

title: Suspicious Morto Activity
id: 3703a207dd8f1fde219278b82a053970
status: experimental
description: Detects generic indicators of the morto malware family.
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        Image|endswith:
            - '\cmd.exe'
            - '\powershell.exe'
        CommandLine|contains:
            - "*morto*"
    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 block all inbound port 3389 (RDP) traffic at the perimeter firewall; RDP should never be exposed directly to the internet without a VPN or Gateway.
  2. Segment the internal network to prevent the worm from horizontally scanning and brute-forcing internal servers.
  3. Identify all accounts (especially local 'Administrator' accounts) that use weak or default passwords and force an immediate, enterprise-wide password reset.
  4. Analyze Windows Security Event Logs for Event ID 4624 (Logon Type 10) to identify the specific machines that were compromised via RDP.

What to Avoid

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

  1. Do not allow local 'Administrator' accounts to remain active with the same password across multiple workstations (use LAPS instead).
  2. Avoid relying solely on changing the default RDP port (e.g., from 3389 to 3390); worms like Morto and modern port scanners will easily find the open service regardless of the port number.

References & External Analysis

Frequently Asked Questions

How do I remove the Morto Advanced_Threat from Windows?

Manual removal of Morto 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 Morto a virus or a Advanced_Threat?

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

What are the main symptoms of a Morto infection?

Symptoms of Morto 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: advanced_threat)

Explore other malware families in the same category:

Protect Your Network Against Advanced_Threats

Want to prevent Morto and similar threats from compromising your organization? Read our comprehensive defensive guide: Suspect an Infection? What to do.

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/morto.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.