Krepper

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

Overview

Worm:Win32/Krepper is a highly virulent, self-replicating network worm designed to spread rapidly across vulnerable corporate environments. Unlike a trojan that relies on user interaction (like clicking an email link), Krepper actively scans the local network and the internet to find unpatched machines, exploiting known vulnerabilities or utilizing weak credentials to automatically infect new hosts and expand its botnet.

Understanding Krepper (Network Worms)
To an end-user, a Krepper infection might cause the computer to become sluggish or completely unresponsive, as the worm consumes all available CPU and network bandwidth trying to replicate. For a network administrator, Krepper is an immediate crisis. It can saturate internal network links (causing Denial of Service - `T1498`), overwhelm firewalls with outbound scanning traffic (`T1046`), and rapidly compromise all unpatched servers in a matter of minutes.

Execution and Propagation Mechanics
Krepper achieves Initial Access through the exploitation of remote services (`T1190`), often targeting legacy vulnerabilities like MS08-067 (similar to Conficker) or exposed SMB/RDP ports with weak passwords. Once it compromises a host, it drops its executable into the Windows system directory and establishes persistence via the Registry Run keys (`T1547.001`). It then generates random IP addresses and aggressively scans them for the same vulnerability (`T1046`), attempting to push its payload (`T1105`) to any responsive targets. Some variants also attempt to propagate via removable USB drives (`T1091`) by creating malicious `autorun.inf` files.

Indicators of Compromise & Impact
The impact is severe network disruption and widespread compromise. Network IoCs are the most prominent: an explosion of outbound traffic on specific ports (e.g., 445, 135) originating from infected internal hosts. Host-based IoCs include the presence of unexpectedly named executables in `C:\Windows\System32`, unauthorized modifications to the Windows Firewall, and the creation of hidden `autorun.inf` files on attached storage.

MITRE ATT&CK Techniques

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

TechniqueNameTactic
T1190Exploit Public-Facing Application (Remote Code Execution)Initial Access
T1046Network Service Discovery (Aggressive port scanning)Discovery
T1091Replication Through Removable Media (USB Autorun)Lateral Movement
T1498Network Denial of Service (Traffic saturation during propagation)Impact

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

Sigma Rule

title: Suspicious Krepper Activity
id: 2425fbfa401f9a93b78c75826c018751
status: experimental
description: Detects generic indicators of the krepper malware family.
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        Image|endswith:
            - '\cmd.exe'
            - '\powershell.exe'
        CommandLine|contains:
            - "*krepper*"
    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 segregate the infected network segments using VLAN ACLs or internal firewalls to stop the worm from spreading to critical infrastructure.
  2. Identify the specific vulnerability or credential set Krepper is exploiting and immediately push the corresponding patch or password reset enterprise-wide.
  3. Deploy an updated AV signature or custom EDR rule to isolate and terminate the worm's process on all affected endpoints.
  4. Disable `Autorun` globally via Group Policy to prevent USB-based propagation.

What to Avoid

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

  1. Do not simply clean one machine and reconnect it to an unpatched network; the worm will instantly reinfect it.
  2. Avoid performing a network-wide reboot; focus on patching and isolation first to prevent the worm from re-establishing a foothold upon startup.

References & External Analysis

Frequently Asked Questions

How do I remove the Krepper Trojan from Windows?

Manual removal of Krepper 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 Krepper a virus or a Trojan?

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

What are the main symptoms of a Krepper infection?

Symptoms of Krepper 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 Krepper and similar threats from compromising your organization? Read our comprehensive defensive guide: Banking Trojan Protection.

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

Machine-readable

Get this profile as JSON: https://jordan123234-malware-families-explorer.static.hf.space/api/krepper.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.