Phorpiex
Overview
Worm:Win32/Phorpiex (also known as Trik) is a massive, highly resilient botnet predominantly known for powering global spam campaigns, sextortion schemes, and distributing secondary malware payloads.
Understanding Phorpiex
To the average user, a Phorpiex infection might result in their email account being locked for sending spam, or their CPU spiking as the malware mines cryptocurrency. For threat researchers, Phorpiex is a formidable botnet infrastructure that has been active for over a decade. It operates as a multi-purpose malware-as-a-service, primarily monetized through massive email spam runs, clipboard hijacking (to steal cryptocurrency), and dropping ransomware (like GandCrab or Avaddon).
Execution and Evasion Strategies
Phorpiex spreads via multiple vectors: malicious spam attachments, exploit kits, and lateral movement via infected USB drives and open network shares. Once on a system, it establishes persistence by adding a shortcut to the Windows Startup folder or modifying the Run registry keys. It then contacts its C2 infrastructure to download the latest spam templates and a list of target email addresses. Phorpiex heavily utilizes Domain Generation Algorithms (DGA) or hardcoded IP arrays to maintain resilient C2 communications.
Indicators of Compromise (IoCs)
Incident responders should monitor network traffic for massive volumes of outbound SMTP connections (port 25) originating from client endpoints—a massive red flag for a spam botnet. Furthermore, investigators should audit the Windows clipboard for unexpected modifications (e.g., a Bitcoin address being dynamically swapped when a user copies it). High CPU utilization from dropped XMRig cryptominers is also a frequent secondary indicator.
Known aliases
Threat reports may refer to this family under multiple names:
MITRE ATT&CK Techniques
Observed techniques used by this family, mapped to the MITRE ATT&CK framework:
Tactical Mitigations
Based on the techniques used by this family, consider the following defensive strategies:
- T1566.001: Scan email attachments for malicious macros, scripts, or suspicious archive files.
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_PHORPIEX {
meta:
description = "Detects Phorpiex (spam_bot)"
author = "SystemHelpdesk Boilerplate Generator"
date = "2026-07-06"
strings:
$s1 = "phorpiex" ascii wide nocase
$s2 = "trik" ascii wide nocase
$s3 = "win32.phorpiex" ascii wide nocase
$s4 = "phorpiex.a" ascii wide nocase
$s5 = "phorpiex.b" ascii wide nocase
$s6 = "trik_botnet" ascii wide nocase
condition:
uint16(0) == 0x5a4d and any of them
}Sigma Rule
title: Suspicious Phorpiex Activity
id: 9a756d7e2e3beebfcf7488306c1b0f31
status: experimental
description: Detects generic indicators of the phorpiex malware family.
logsource:
category: process_creation
product: windows
detection:
selection:
Image|endswith:
- '\cmd.exe'
- '\powershell.exe'
CommandLine|contains:
- "*phorpiex*"
- "*trik*"
- "*win32.phorpiex*"
- "*phorpiex.a*"
- "*phorpiex.b*"
- "*trik_botnet*"
condition: selection
level: mediumContainment & Response Steps
Ordered checklist for responders. Adapt to your environment and engage professional support for active incidents.
- Block outbound SMTP traffic (TCP port 25) at the perimeter firewall for all client workstations to neuter the spam botnet capabilities.
- Isolate the endpoint to prevent the lateral spread of the worm via network shares and USB drives.
- Deploy EDR to hunt for unexpected cryptomining processes (e.g., <code>cgminer.exe</code>, <code>xmrig.exe</code>) utilizing high CPU.
- Audit all email accounts associated with the user for signs of compromise, as Phorpiex harvests local Outlook credentials to send spam.
What to Avoid
Common mistakes during response to this family that can destroy evidence, spread the infection, or worsen recovery.
- Do not ignore a Phorpiex infection as 'just a spam bot'; it is frequently used to drop highly destructive ransomware as a secondary payload.
- Avoid paying any sextortion demands generated by the Phorpiex botnet; these are automated scams based on leaked credential dumps, and the attackers do not possess compromising video.
References & External Analysis
- Search "phorpiex" on VirusTotal (External Analysis)
Frequently Asked Questions
What is Phorpiex known for?
Spam and sextortion campaigns, USB-based spreading, and clipboard-hijacking to steal cryptocurrency.
How does Phorpiex spread?
Through removable drives and large spam campaigns.
What is a crypto clipper?
Malware that watches the clipboard and replaces a copied wallet address with the attacker's address to divert payments.
How do I remove the Phorpiex Spam_Bot from Windows?
Manual removal of Phorpiex 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 Phorpiex a virus or a Spam_Bot?
Phorpiex is classified as a Spam_Bot. Unlike traditional viruses that infect files, modern malware like Phorpiex typically operates as a standalone payload designed to compromise systems, steal data, or deploy secondary stage implants.
What are the main symptoms of a Phorpiex infection?
Symptoms of Phorpiex 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: spam_bot)
Explore other malware families in the same category:
Protect Your Network Against Spam_Bots
Want to prevent Phorpiex and similar threats from compromising your organization? Read our comprehensive defensive guide: Suspect an Infection? What to do.
Machine-readable
Get this profile as JSON: https://jordan123234-malware-families-explorer.static.hf.space/api/phorpiex.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.