Dysphoria’s Dangerous Evolution: 200,000 Infected Devices Transform Into a Global Hidden Cyber Proxy Network + Video

Listen to this Post

Featured ImageIntroduction: A New Generation of Botnets Is Changing Cyber Warfare

Botnets have traditionally been associated with massive Distributed Denial-of-Service (DDoS) attacks, overwhelming websites and online services with enormous amounts of malicious traffic. However, the cybersecurity landscape is rapidly evolving. Modern cybercriminals are no longer satisfied with simply disrupting internet services—they are building sophisticated infrastructures capable of hiding malicious operations, bypassing security defenses, and maintaining long-term persistence.

Security researchers at XLAB have uncovered one of the most concerning examples of this trend: Dysphoria, a rapidly evolving botnet that has already compromised more than 200,000 internet-connected devices. What started as a relatively conventional DDoS botnet has transformed into something significantly more dangerous—a decentralized command-and-control (C2) proxy network powered by thousands of infected routers, surveillance cameras, gateways, and embedded Linux systems worldwide.

Rather than relying on a handful of centralized servers that can be easily identified and taken offline, Dysphoria distributes its infrastructure across countless residential and enterprise IoT devices. This architectural shift makes the malware substantially harder to detect, block, or dismantle, marking another milestone in the ongoing evolution of cybercrime.

Dysphoria Expands Beyond Traditional DDoS Attacks

Security researchers first observed Dysphoria during the first quarter of 2026. Initially, the malware behaved similarly to numerous IoT botnets seen over the past decade, focusing primarily on launching Distributed Denial-of-Service attacks against selected targets.

Over only a few months, however, the malware underwent significant architectural changes. Instead of acting solely as a DDoS weapon, Dysphoria evolved into an advanced distributed communication platform that allows attackers to anonymously relay command-and-control traffic through compromised devices scattered across the internet.

Today, researchers estimate that more than 200,000 compromised systems participate in this expanding network.

Compromised Routers Become Anonymous Internet Relays

The most alarming addition to Dysphoria is its dedicated relay component.

Rather than directly attacking victims, this lightweight malware transforms infected devices into hidden communication bridges. Every compromised router, IP camera, embedded Linux appliance, or network gateway becomes a publicly accessible proxy that forwards attacker traffic toward backend infrastructure.

This dramatically complicates defensive efforts because investigators are no longer dealing with centralized C2 servers—they must instead identify and clean thousands of ordinary household and enterprise networking devices.

The attackers essentially turn victims into unwilling participants that unknowingly hide malicious communications.

UPnP Abuse Opens 155 Network Ports Automatically

Perhaps the most technically impressive capability discovered by XLAB is Dysphoria’s abuse of Universal Plug and Play (UPnP).

Normally, UPnP is designed to simplify networking by automatically opening ports for legitimate applications such as gaming consoles, VoIP services, or video conferencing software.

Dysphoria weaponizes this convenience.

Once running on an infected device, the malware searches for UPnP-enabled routers across the local network and automatically requests 155 separate port mappings.

Those newly opened ports expose services behind Network Address Translation (NAT), allowing attackers from anywhere on the internet to communicate directly with compromised systems that would otherwise remain inaccessible.

The malware essentially punches dozens of hidden holes through the victim’s firewall without requiring user interaction.

Blockchain Naming Services Replace Traditional DNS

One of

Earlier versions relied on the Ethereum Name Service (ENS), including domains such as:

m3rnbvs5d.eth

ukranianhorseriding.eth

burrberry.eth

Later variants expanded support to the Solana Name Service (SNS) using domains such as:

24carnforth2merseyside.sol

Instead of querying ordinary DNS servers, Dysphoria retrieves TXT records and custom blockchain metadata that contain updated command-and-control information.

This technique offers attackers several major advantages.

Unlike conventional domains, blockchain records cannot easily be seized, suspended, or removed through traditional registrar takedowns, making infrastructure far more resilient against law enforcement operations.

Sophisticated Encryption Hides Internal Configuration

Researchers also discovered that the

Recent versions encrypt critical configuration strings using a customized encryption routine inspired by RC4.

Rather than implementing standard RC4 directly, Dysphoria combines multiple algorithms including:

RC4 operations

Linear Congruential Generator (LCG)

Linear Feedback Shift Register (LFSR)

This hybrid implementation makes reverse engineering considerably more difficult because automated malware analysis tools cannot easily recover embedded configuration values.

IPv6 Addresses Hide Real Command Servers

Another clever evasion technique involves disguising IPv4 command servers inside fake IPv6-looking addresses.

Instead of storing readable IP addresses inside the malware binary, Dysphoria embeds specially crafted IPv6 values.

During execution, only selected bytes are extracted before a custom decoding routine reconstructs the real IPv4 command server.

This approach frustrates analysts searching for obvious indicators of compromise while also reducing the effectiveness of static malware detection.

Relay Servers Keep the Entire Botnet Alive

Unlike traditional malware families where infected machines connect directly to one central server, Dysphoria introduces an intermediate relay architecture.

The infection chain works as follows:

Malware decodes hidden server information.

It contacts relay-distribution servers over HTTP.

The server returns an updated list of proxy nodes.

Traffic is forwarded through compromised residential devices.

Backend command servers remain hidden behind multiple proxy layers.

If defenders successfully block one relay, operators simply distribute a fresh list of available relay nodes without rebuilding the botnet.

This flexible infrastructure dramatically increases operational resilience.

Dedicated Relay Malware Removes DDoS Components

During late June 2026, researchers identified an entirely new Dysphoria variant.

Unlike previous releases, this version contains no DDoS functionality whatsoever.

Its sole purpose is maintaining anonymous communication channels.

This design demonstrates a strategic shift in attacker priorities. Instead of maximizing attack traffic, operators now prioritize maintaining a stable, distributed, and difficult-to-trace command infrastructure.

Such specialization is commonly seen in mature cybercriminal organizations.

Health Monitoring Improves Botnet Reliability

Every infected relay periodically reports operational statistics to the attackers.

These reports may include:

Current online status

Number of active connections

Available bandwidth

Node reliability

Example data resembles:

{
"status": "ONLINE",
"connections": 42,
"bandwidth_mbps": 12.5
}

By continuously monitoring each infected relay, operators can automatically remove unstable nodes while prioritizing faster and more reliable systems.

This transforms the botnet into a self-maintaining infrastructure capable of supporting long-term operations.

Deep Analysis

Dysphoria demonstrates how modern botnets are evolving from simple attack tools into resilient distributed infrastructure. Its reliance on IoT devices, decentralized naming systems, and dynamic relay networks significantly increases the difficulty of detection and disruption. Security teams should focus on monitoring UPnP exposure, outbound HTTP communications, and unusual port mappings.

Identify UPnP Status

upnpc -l

Disable UPnP on Linux gateways (where supported):

sudo systemctl stop miniupnpd
sudo systemctl disable miniupnpd

List listening ports:

ss -tulnp

Inspect unexpected NAT rules:

iptables -t nat -L -n -v

Monitor active connections:

netstat -plant

Capture suspicious HTTP traffic:

tcpdump -i eth0 port 80

Scan local IoT devices:

nmap -sV 192.168.1.0/24

Search for unknown processes:

ps aux | grep -i dysphoria

Check startup persistence:

systemctl list-unit-files --state=enabled

Inspect cron jobs:

crontab -l

Review firewall configuration:

ufw status verbose

Monitor network activity in real time:

iftop

Organizations should also disable unnecessary UPnP functionality, regularly update router firmware, replace unsupported IoT hardware, segment IoT devices from corporate networks, and deploy behavioral network monitoring capable of identifying abnormal relay behavior rather than relying solely on malware signatures.

What Undercode Say:

Dysphoria represents a significant evolution in IoT malware because its primary objective is no longer simply overwhelming websites with traffic. Instead, the operators are building an invisible communication ecosystem that can survive infrastructure takedowns.

The migration from centralized C2 servers toward decentralized relay nodes reflects lessons learned from years of law enforcement disruption campaigns.

Using over 200,000 compromised devices provides remarkable redundancy.

The abuse of residential routers makes attribution considerably harder.

Blockchain naming services eliminate dependence on traditional DNS providers.

ENS and SNS domains create infrastructure that is more resistant to censorship.

The use of fake IPv6 addresses demonstrates deliberate anti-analysis engineering.

The customized RC4 implementation increases reverse-engineering complexity.

Separating relay functionality from DDoS capabilities shows professional software design.

Dedicated malware components are easier to maintain and upgrade independently.

The relay architecture resembles enterprise-grade distributed systems.

Every infected device contributes to network resilience.

Health reporting allows operators to optimize performance automatically.

Bandwidth-aware node selection increases operational efficiency.

UPnP abuse remains one of the weakest points in consumer networking security.

Many users never disable UPnP after purchasing routers.

Legacy IoT devices often receive little or no security updates.

Residential networking equipment remains an attractive target.

The architecture could support ransomware operations.

It could also facilitate credential theft campaigns.

Proxy infrastructure can hide phishing servers.

It can mask malware delivery systems.

It may be rented to other cybercriminal groups.

Criminal infrastructure-as-a-service continues to expand.

Distributed proxy networks complicate digital forensics.

Traditional IP blacklisting becomes less effective.

Incident response teams must focus on behavioral indicators.

Network telemetry becomes increasingly important.

Threat hunting should include unauthorized port mappings.

IoT asset inventories are now essential.

Organizations should isolate embedded devices from critical systems.

Zero Trust networking reduces lateral movement risks.

Firmware management deserves higher organizational priority.

Blockchain-based C2 discovery is likely to become more common.

Future malware may integrate additional decentralized technologies.

Artificial intelligence could eventually optimize relay selection automatically.

Cloud-hosted detection alone will not solve this problem.

Endpoint visibility on IoT devices remains limited.

Collaborative intelligence sharing between vendors will become increasingly important.

Dysphoria illustrates that modern botnets are becoming infrastructure platforms rather than disposable attack tools.

The cybersecurity community must adapt accordingly before decentralized malware ecosystems become the new standard.

✅ Fact: XLAB researchers reported tracking Dysphoria since early 2026, and the botnet has grown to more than 200,000 compromised devices. This aligns with the available technical findings and demonstrates the malware’s rapid expansion.

✅ Fact: Dysphoria abuses UPnP to create up to 155 port mappings, enabling externally reachable relay nodes behind NAT. This behavior is technically feasible and represents a serious security concern for vulnerable routers and IoT devices.

✅ Fact: The malware leverages Ethereum Name Service (ENS) and Solana Name Service (SNS) to discover command-and-control infrastructure. Combined with encryption and custom decoding routines, these techniques significantly improve resilience against conventional infrastructure takedowns.

Prediction

(+1) Security vendors will increasingly develop behavioral detection technologies capable of identifying decentralized relay activity, abnormal UPnP port mapping, and blockchain-based command-and-control discovery, improving defenders’ ability to detect advanced botnets like Dysphoria before they can establish long-term persistence.

(-1) Threat actors are likely to continue adopting decentralized infrastructure, dedicated relay malware, blockchain naming systems, and residential IoT proxy networks, making future botnets substantially more resilient, anonymous, and difficult for global law enforcement and cybersecurity teams to dismantle.

▶️ Related Video (80% Match):

🕵️‍📝Let’s dive deep and fact‑check.

🎓 Live Courses & Certifications:

Join Undercode Academy for Verified Certifications

🚀 Request a Custom Project:

Secure, high-velocity infrastructure and disruptive technological engineering. Contact our engineering team for high-tier development and proprietary systems:
[email protected]
💎 Smart Architecture | 🛡️ Secure by Design | ⭐ Trusted by Thousands

References:

Reported By: cyberpress.org
Extra Source Hub (Possible Sources for article):
https://www.facebook.com
Wikipedia
OpenAi & Undercode AI

Image Source:

Unsplash
Undercode AI DI v2

🔐JOIN OUR CYBER WORLD [ CVE News • HackMonitor • UndercodeNews ]

💬 Whatsapp | 💬 Telegram

📢 Follow UndercodeNews & Stay Tuned:

𝕏 formerly Twitter 🐦 | @ Threads | 🔗 Linkedin | 🦋BlueSky | 🐘Mastodon | 📺Youtube