Viking

Category: file_infector · Aliases: None known · Sample count (EMBER 2018): 175 · Enrichment: expert-seo · Updated: 2026-06-09

Overview

Worm:Win32/Viking (also known as HLLP.Viking) is a classic, destructive network worm and file infector notorious for rapidly propagating across local networks, corrupting executable files, and causing severe system instability.

What is Viking?
For general users, a Viking infection causes significant disruption, often resulting in widespread application crashes and the inability to launch legitimate software. For incident responders, it represents a noisy, aggressive propagation threat. Viking is a true virus/worm hybrid; it seeks to infect every .exe file it can access while simultaneously attempting to copy itself to all reachable network shares.

Infection Vectors & Threat Hunting
Viking primarily spreads by users executing an already infected file or via open SMB network shares. Upon execution, the virus becomes memory-resident. It immediately drops a hidden executable (often named rundl132.exe or similar deceptive names) into the Windows directory and establishes persistence via the Registry Run keys. It then aggressively scans all local drives, targeting executable files. Viking appends its viral body to the legitimate file and modifies the entry point. Crucially, Viking often drops additional payloads, such as backdoors or generic trojan downloaders, to further compromise the host.

Forensic Analysis & Impact
The impact is widespread file corruption and massive operational disruption. EDR platforms frequently trigger a flood of alerts for 'Suspicious File Modification' or 'Executable Entry Point Altered' as Viking rapidly rewrites thousands of files. Incident responders will notice legitimate applications suddenly increasing in size. Network logs will show aggressive SMB scanning (port 445) as the worm attempts lateral movement.

MITRE ATT&CK Techniques

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

TechniqueNameTactic
T1091Replication Through Removable MediaLateral Movement
T1055.001Process Injection: Dynamic-link Library InjectionDefense Evasion
T1485Data DestructionImpact
T1547.001Boot or Logon Autostart Execution: Registry Run Keys / Startup FolderPersistence
T1105Ingress Tool TransferCommand and Control

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

Sigma Rule

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

Containment & Response Steps

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

  1. Instantly sever the endpoint from the network to prevent the worm from iterating over open SMB shares and infecting files on central servers.
  2. Do not execute any files on the infected system, as running an infected file simply re-triggers the memory-resident infection cycle.
  3. Boot the infected machine from a known-clean, write-protected live OS (like a Linux Live USB) to safely scan and disinfect the drive offline.
  4. Utilize a specialized antivirus disinfection tool capable of carefully stripping the appended Viking viral body and restoring the original executable entry points.

What to Avoid

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

  1. Do not attempt to manually clean the machine while booted into the infected OS; the memory-resident virus will instantly reinfect files as you clean them.
  2. Avoid relying solely on file deletion; deleting infected files means deleting legitimate applications. Proper disinfection is required.

References & External Analysis

Related Families (Category: file_infector)

Explore other malware families in the same category:

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/viking.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, Replit, StackBlitz, CodeSandbox, and CodePen.