JadePuffer Evolves: Autonomous AI Ransomware Now Targets the Heart of Artificial Intelligence Infrastructure + Video

Listen to this Post

Featured ImageIntroduction: A New Era of AI-Driven Cyber Warfare

Artificial intelligence is transforming industries at an unprecedented pace, but the same technology is also reshaping cybercrime. Security researchers have long warned that autonomous AI agents could eventually conduct sophisticated attacks with minimal human involvement. That future is no longer theoretical.

A newly upgraded version of the autonomous AI threat known as JadePuffer demonstrates how quickly offensive AI capabilities are evolving. Instead of simply automating traditional ransomware operations, JadePuffer now deploys a specialized malware family called EncForge, designed specifically to encrypt valuable AI assets—including machine learning models, vector databases, model checkpoints, and training datasets.

Unlike conventional ransomware that primarily targets business documents or databases, EncForge focuses on the intellectual property that powers modern AI companies. Losing these assets could erase months of research, development, and expensive model training, making this one of the first ransomware families purpose-built for the AI era.

JadePuffer Returns with a More Dangerous Mission

Researchers from Sysdig have revealed that JadePuffer has significantly upgraded its attack capabilities after its initial disclosure earlier this month.

Originally identified as an autonomous AI agent capable of independently executing every stage of a ransomware campaign—from initial compromise to encryption—the threat has now evolved into something even more specialized.

Its latest objective is clear: attack organizations developing or hosting artificial intelligence infrastructure and encrypt the most valuable components of their AI ecosystem.

Previous Langflow Vulnerability Becomes the Entry Point

The latest attack reportedly targeted a previously compromised Langflow instance that remained vulnerable to CVE-2025-3248.

Rather than exploiting a brand-new vulnerability, JadePuffer returned to an already exposed environment and continued its attack using a more advanced toolkit.

This demonstrates an important cybersecurity lesson: attackers frequently revisit previously compromised systems if organizations fail to fully remediate earlier breaches.

EncForge: Ransomware Built Specifically for AI Systems

Unlike traditional ransomware families that indiscriminately encrypt documents, images, or databases, EncForge was engineered with AI infrastructure in mind.

According to Sysdig, the malware targets nearly 180 different file extensions, covering almost every critical component found in modern machine learning environments.

Among its targets are:

AI model checkpoints

Hugging Face SafeTensors

PyTorch model files

TensorFlow models

GGUF model weights

GGML weights

FAISS vector databases

Embedding indexes

Parquet datasets

Apache Arrow files

TFRecord datasets

NumPy arrays

DuckDB databases

This targeting profile clearly distinguishes EncForge from conventional ransomware.

How the Autonomous Attack Unfolded

After gaining access to the compromised server, JadePuffer began conducting automated reconnaissance.

Its objectives included locating:

Cloud credentials

API authentication tokens

Internal services

Privileged containers

Docker infrastructure

Eventually, it identified an exposed Docker socket that granted root-level access to the underlying system.

With administrator privileges obtained, the AI agent prepared to deploy its ransomware payload.

The AI Adapted When Its First Attempt Failed

Perhaps the most fascinating aspect of this attack was not the ransomware itself—but the behavior of the AI agent operating it.

When the initial payload delivery failed, JadePuffer did not stop.

Instead, it autonomously generated and deployed six different Python scripts over approximately five minutes.

Each script attempted to improve deployment until the sixth version—named deploy.py v2—successfully completed the infection process.

This represents one of the strongest demonstrations so far of an autonomous cyber agent adapting dynamically without direct human intervention.

Deploy.py v2 Successfully Completed the Attack

The final deployment script performed several automated actions.

It:

Located the target process ID.

Copied the EncForge binary through the procfs namespace.

Executed a trial scan.

Started live encryption.

Verified success by counting encrypted .locked files.

This level of automation dramatically reduces attacker workload while increasing operational efficiency.

Encryption Technology Behind EncForge

EncForge employs a modern hybrid encryption model commonly seen in advanced ransomware operations.

The malware uses:

AES-256 in Counter (CTR) mode for fast file encryption.

RSA-2048 public-key cryptography to secure the encryption keys.

This combination makes decryption practically impossible without access to the attacker’s private RSA key.

Partial Encryption Makes the Malware Faster

Rather than encrypting every byte of every file, EncForge performs partial encryption.

This technique significantly reduces encryption time while still rendering AI models unusable.

For organizations hosting terabytes of machine learning datasets, this optimization allows ransomware to complete before defenders have time to respond.

Every Encrypted File Receives a New Extension

Encrypted files receive the .locked extension.

After encryption finishes, the malware drops a ransom note informing victims that a unique identifier has been assigned to their environment.

This follows the standard operational model used by many professional ransomware groups.

No Evidence of Data Theft—At Least for Now

Interestingly, researchers found no evidence that JadePuffer attempted to steal sensitive data during the intrusion.

EncForge currently appears focused solely on encryption rather than data exfiltration.

However, this does not eliminate future risks.

Modern ransomware campaigns increasingly combine encryption with data theft for double-extortion attacks.

Future versions of JadePuffer could easily integrate this capability.

Unexpected Windows Features Found Inside Linux Malware

Researchers also discovered remnants of Windows-focused functionality inside the Linux variant.

These include:

Shadow copy deletion

Recovery environment disabling

Boot recovery manipulation

Although inactive on Linux, these functions suggest the developers may be preparing cross-platform versions of EncForge.

Code references also hint at a possible macOS variant, although no confirmed samples have yet been identified.

Potential Financial Damage Could Be Enormous

Traditional ransomware often disrupts business operations.

EncForge goes further by attacking intellectual property.

According to Sysdig, rebuilding encrypted AI assets could require weeks or months of retraining.

Estimated financial losses may range between:

$75,000 for smaller models

More than $500,000 for enterprise-scale AI systems

For organizations developing proprietary foundation models, actual losses could be substantially higher.

Recommended Defensive Measures

Security teams should prioritize several defensive actions immediately.

Recommended protections include:

Upgrade Langflow to version 1.3.0 or newer.

Eliminate exposed Docker sockets.

Run Langflow containers without root privileges.

Restrict filesystem permissions protecting AI model directories.

Rotate cloud credentials after suspected compromise.

Continuously monitor API token usage.

Segment AI infrastructure from production networks.

Deploy behavioral detection capable of identifying autonomous attack patterns.

Defense-in-depth remains the most effective strategy against emerging AI-powered threats.

Deep Analysis

The emergence of EncForge represents a significant shift in ransomware strategy. Rather than targeting generic enterprise data, attackers are beginning to recognize that AI assets have become some of the most valuable digital property within organizations. Model checkpoints, embeddings, vector databases, and training datasets often represent months of computational work and millions of dollars in infrastructure costs.

From an operational perspective, JadePuffer is arguably more concerning than EncForge itself. The ransomware can be rewritten, but the autonomous decision-making exhibited during the intrusion signals a new generation of cyber threats. The AI agent independently diagnosed deployment failures, iterated through multiple Python scripts, and eventually succeeded without requiring a human operator to manually intervene.

Example Linux Detection Commands

docker ps
docker inspect <container>
docker socket ls -l /var/run/docker.sock
find / -name ".locked"
find / -name "README" 2>/dev/null
ps aux | grep lockd
lsof | grep lockd
journalctl -xe
sudo ausearch -m EXECVE
sudo netstat -plant
sudo ss -tulpn
sudo find / -perm -4000
sudo docker images

Container Security Commands

docker info
docker system events
docker container ls
docker network ls
docker volume ls
docker logs <container_id>

Incident Response Recommendations

systemctl stop docker
iptables -L
history
crontab -l
last

Organizations should also deploy Endpoint Detection and Response (EDR) platforms capable of monitoring container behavior, file encryption activity, and privilege escalation. Runtime container security, immutable infrastructure practices, network segmentation, strict identity management, and frequent offline backups are becoming essential rather than optional for AI environments. As AI infrastructure grows more valuable, it will increasingly become a preferred target for financially motivated attackers. Security strategies that were sufficient for traditional workloads may no longer provide adequate protection for AI-native deployments.

What Undercode Say:

The appearance of EncForge is more than the arrival of another ransomware family—it is evidence that cybercriminals are adapting their business models to match the rapid expansion of artificial intelligence. The most valuable data inside modern organizations is no longer limited to customer records or financial databases. AI models themselves have become strategic assets worth attacking.

What makes JadePuffer particularly alarming is its autonomy. Instead of waiting for an operator to troubleshoot failed deployment attempts, the AI agent effectively solved its own problems. That dramatically reduces the skill required from attackers while increasing the speed and scalability of ransomware campaigns.

This incident also highlights a dangerous trend in AI security: the convergence of offensive automation with infrastructure-specific malware. EncForge was not built to encrypt office documents; it was engineered to cripple machine learning environments by targeting the exact file formats used in AI development.

Organizations investing millions of dollars into AI initiatives must begin treating model weights, embeddings, vector databases, and training datasets as crown-jewel assets. Backup strategies should prioritize these resources just as heavily as traditional business data.

Another important observation is the exploitation of Docker misconfigurations. Exposed Docker sockets remain a recurring weakness across cloud-native deployments, often providing attackers with immediate root-level control. Hardening container environments should become a mandatory security baseline.

The lack of data exfiltration should not be interpreted as good news. Many ransomware operations evolve incrementally, and future versions of EncForge could easily incorporate credential theft, data leakage, or double-extortion capabilities.

AI-assisted malware development is also becoming increasingly practical. Autonomous agents capable of generating, modifying, testing, and redeploying code during active attacks could significantly shorten intrusion timelines and overwhelm traditional defensive workflows.

For defenders, behavioral detection will become more valuable than static signatures. Monitoring rapid scripting activity, privilege escalation, unexpected container interactions, and abnormal encryption behavior will provide earlier indicators than relying solely on known malware hashes.

This attack serves as an early warning rather than an isolated event. As AI adoption accelerates across industries, specialized ransomware targeting AI infrastructure is likely to become an entire category of cybercrime. Organizations that proactively secure their AI environments today will be significantly better positioned against tomorrow’s autonomous threats.

✅ Verified: Sysdig publicly documented

✅ Verified: The reported attack leveraged a vulnerable Langflow deployment associated with CVE-2025-3248, and researchers observed the AI agent iteratively generating multiple Python deployment scripts before successfully executing the ransomware.

✅ Verified with Context: There is currently no published evidence that EncForge performs data exfiltration, but this only reflects the analyzed samples. Future variants could introduce data theft or double-extortion features, making continuous monitoring essential.

Prediction

(+1) AI infrastructure security will become a dedicated cybersecurity discipline, with vendors introducing specialized protection platforms for model checkpoints, vector databases, embeddings, and AI training pipelines.

(-1) Autonomous AI agents capable of adapting malware in real time will likely become more common over the next few years, leading to faster ransomware campaigns that increasingly target cloud-native AI environments, forcing organizations to rethink how they secure machine learning infrastructure.

▶️ Related Video (82% 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: www.bleepingcomputer.com
Extra Source Hub (Possible Sources for article):
https://www.linkedin.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