Sohanad
Overview
Worm:Win32/Sohanad is a widespread, classic computer worm that gained notoriety for spreading aggressively via removable drives (USB flash drives) and popular Instant Messaging (IM) clients, notably Yahoo Messenger. Its primary function was to propagate itself, degrade system security settings, and often act as a downloader for secondary adware or trojan payloads.
Understanding the Sohanad Worm
To an end-user, a Sohanad infection often manifested as a sudden inability to access the Registry Editor or Task Manager, and the appearance of strange, hidden executable files on their USB drives. For security analysts, Sohanad is a textbook example of a highly successful network-bridging worm. By relying on physical media (USBs), it could easily cross air-gapped networks or jump between home and corporate environments.
Propagation and Persistence Mechanics
Sohanad spreads primarily by exploiting the Windows AutoRun feature (`T1091`). When an infected USB drive is inserted into a vulnerable PC, Windows automatically executes the `autorun.inf` file, which points to the hidden Sohanad executable on the drive. Once executed, the worm copies itself to the Windows system folder (`%SystemRoot%`) and creates multiple Registry Run keys (`T1547.001`). Crucially, to protect itself, Sohanad actively modifies the Registry to disable `taskmgr.exe`, `regedit.exe`, and the 'Show Hidden Files' option in Windows Explorer (`T1562.001`). It then actively polls for newly inserted USB drives, infecting them to continue the cycle. Additionally, it historically hooked into Yahoo Messenger to send malicious links to the victim's contact list.
Indicators of Compromise & Impact
The impact is rapid, widespread lateral movement across an organization, degraded security controls, and potential secondary payload delivery. Incident responders will observe a sudden spike in EDR alerts relating to `autorun.inf` execution and unauthorized modifications to critical Windows policies (disabling Task Manager). Network logs may show the worm downloading secondary payloads from hardcoded IPs.
MITRE ATT&CK Techniques
Observed techniques used by this family, mapped to the MITRE ATT&CK framework:
| Technique | Name | Tactic |
|---|---|---|
T1091 | Replication Through Removable Media | Lateral Movement |
T1562.001 | Impair Defenses: Disable or Modify Tools (Task Manager/Regedit) | Defense Evasion |
T1547.001 | Boot or Logon Autostart Execution: Registry Run Keys | Persistence |
T1564.001 | Hide Artifacts: Hidden Files and Directories | Defense Evasion |
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_SOHANAD {
meta:
description = "Detects Sohanad (trojan)"
author = "SystemHelpdesk Boilerplate Generator"
date = "2026-07-06"
strings:
$s1 = "sohanad" ascii wide nocase
condition:
uint16(0) == 0x5a4d and any of them
}Sigma Rule
title: Suspicious Sohanad Activity
id: b8787076d4a51c0d3443d17b6a78aa7b
status: experimental
description: Detects generic indicators of the sohanad malware family.
logsource:
category: process_creation
product: windows
detection:
selection:
Image|endswith:
- '\cmd.exe'
- '\powershell.exe'
CommandLine|contains:
- "*sohanad*"
condition: selection
level: mediumContainment & Response Steps
Ordered checklist for responders. Adapt to your environment and engage professional support for active incidents.
- Immediately disable the Windows AutoRun/AutoPlay feature globally across the enterprise via Group Policy (GPO) to halt further propagation.
- Quarantine all known infected endpoints and mandate that any USB drives connected to them be considered compromised and formatted.
- Deploy a script via GPO to revert the malicious registry changes (re-enabling Task Manager, Regedit, and Hidden Files).
- Scan all network file shares, as the worm may attempt to copy itself to mapped drives in addition to physical USBs.
What to Avoid
Common mistakes during response to this family that can destroy evidence, spread the infection, or worsen recovery.
- Do not insert a suspected infected USB drive into an analysis machine unless AutoRun is strictly disabled and you are operating in a contained environment.
- Avoid relying solely on file deletion; if the registry modifications are not reverted, the user will still be unable to see hidden files or use Task Manager.
References & External Analysis
- Search "sohanad" on VirusTotal (External Analysis)
Frequently Asked Questions
How do I remove the Sohanad Trojan from Windows?
Manual removal of Sohanad 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 Sohanad a virus or a Trojan?
Sohanad is classified as a Trojan. Unlike traditional viruses that infect files, modern malware like Sohanad typically operates as a standalone payload designed to compromise systems, steal data, or deploy secondary stage implants.
What are the main symptoms of a Sohanad infection?
Symptoms of Sohanad 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: trojan)
Explore other malware families in the same category:
Protect Your Network Against Trojans
Want to prevent Sohanad and similar threats from compromising your organization? Read our comprehensive defensive guide: Banking Trojan Protection.
Machine-readable
Get this profile as JSON: https://jordan123234-malware-families-explorer.static.hf.space/api/sohanad.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.