Download Privacy Needle App

Type to search

Data Breaches News

An AI Just Hacked 30 Companies for $4 Each

Share
gentlemen hacker gang

Exposed Ransomware Server Reveals Automated $4 AI Cyberattacks

Exposed Server Uncovers the First Fully Automated AI Ransomware Assembly Line

An exposed command-and-control server belonging to an affiliate of “The Gentlemen” ransomware gang has revealed a shift in cybercrime: the rise of autonomous, AI-driven data-theft extortion operations running at fractions of a cent per attack.

Researchers have discovered 3.1 Terabytes of exfiltrated data affecting over 30 global companies across healthcare, software, consulting, manufacturing, and telecommunications. Rather than relying on traditional file encryption, the threat actor operates a low-cost, multi-target extortion assembly line powered by autonomous AI agents.

Key Highlights

  • Hyper-Low Operational Costs: The attacker spent as little as $0.40 to $4.00 in AI token costs per corporate breach.
  • Target Environment: Specifically engineered to seek out, compromise, and exploit misconfigured or vulnerable GitLab instances.
  • Engine & Harness: Leveraged Hermes Agent—an open-source autonomous harness—powered by DeepSeek-V4-Pro reasoning models.
  • No File Encryption: Traditional ransomware encryption has been replaced with data-theft extortion, automated “pressure dossiers,” and AI-calculated ransom demands.
  • Jailbreaking Technique: Safety guardrails were bypassed by framing the attack instructions as an Alice in Wonderland-themed “Capture The Flag” (CTF) security challenge.

Technical Analysis & Attack Architecture

The primary infrastructure discovered was a US-based Windows Virtual Private Server (VPS) linked to secondary storage servers globally.

                  [ Attacker Inputs Target & Leaked Credentials ]
                                       │
                                       ▼
                       ┌──────────────────────────────┐
                       │   Hermes AI Agent Harness    │
                       │   (DeepSeek-V4-Pro LLM)     │
                       └──────────────┬───────────────┘
                                      │
           ┌──────────────────────────┼──────────────────────────┐
           ▼                          ▼                          ▼
  [ Penelope MCP Interface ]   [ SAST / Secret Scanners ]  [ Auto Script Gen ]
           │                          │                          │
           ▼                          ▼                          ▼
 ┌───────────────────┐      ┌───────────────────┐      ┌───────────────────┐
 │ Reverse Shells &  │      │ Vulnerability &   │      │ 86 Dynamic Python │
 │ Payload Execution │      │ Secret Extraction │      │ Post-Exploit Scripts│
 └─────────┬─────────┘      └─────────┬─────────┘      └─────────┬─────────┘
           │                          │                          │
           └──────────────────────────┼──────────────────────────┘
                                      │
                                      ▼
             ┌─────────────────────────────────────────────────┐
             │ Vulnerable / Misconfigured GitLab Targets       │
             │ (Exfiltrates Repos, Secrets, DB Dumps via HTTP) │
             └────────────────────────┬────────────────────────┘
                                      │
                                      ▼
             ┌─────────────────────────────────────────────────┐
             │ Centralized Storage Server (3.1TB / MEGAcmd)   │
             │ ──> AI Generates Monetization & Ransom Dossier  │
             └─────────────────────────────────────────────────┘

1. Initial Access & Targeting

The threat actor gathers compromised GitLab URLs, usernames, and passwords from infostealer logs or Initial Access Brokers (IABs). The infrastructure targets both hosted and self-hosted GitLab deployments.

2. The AI Brain & Tool Orchestration

The operation relies on Hermes Agent integrated with the Penelope Model Context Protocol (MCP) interface:

  • Penelope C2: A reverse-shell terminal tool that allows external machines to initiate outbound connections back to the attacker, bypassing inbound firewall rules.
  • Dynamic Payload Generation: The AI agent generated 86 custom Python post-exploitation scripts designed to run container escapes, execute psql database commands, extract API keys, and evade signature-based detection.

3. How the AI Guardrails Were Bypassed

To bypass AI safety alignment, the attacker presented the attack tasks to DeepSeek-V4-Pro as an open-source cybersecurity Capture The Flag (CTF) challenge themed around Alice in Wonderland. Believing it was solving benign OWASP Top 10 vulnerabilities in a sandbox, the AI agent dynamically built and executed a full CI/CD penetration testing framework against live production systems.

4. Automated Monetization & Dossiers

Once data is exfiltrated to the drop-box server (backed up via MEGAcmd), the AI agent reads through corporate repositories to build structured target profiles. It evaluates:

  • Total business value of source code and client data.
  • Optimal ransom calculations based on revenue.
  • Automated “pressure dossiers” tailored for extortion negotiations.
  • Multi-channel monetization options: direct extortion, dark web auctioning, selling code to competitors, or launching targeted phishing campaigns against the victim’s clients.

Core Vulnerabilities Exploited

The attack automated exploitation against known GitLab vulnerabilities and credential exposures:

CVE / VectorMechanismImpact
Credential ReuseStolen tokens/passwords from infostealersDirect initial authentication
CVE-2023-7028Account takeover via password reset flawFull admin access
CVE-2021-22205Remote Code Execution via ExifToolUnauthenticated system command execution
CVE-2023-2825Path Traversal in GitLabArbitrary file read / secret exposure
CVE-2021-22214Server-Side Request Forgery (SSRF)Internal network access & pivot

Frequently Asked Questions (FAQ)

What is “The Gentlemen” ransomware group?

“The Gentlemen” is a Russian-speaking ransomware operation that emerged around July 2025. Known for offering high affiliate revenue splits, the gang has claimed over 700 global victims within its first year, accounting for roughly 10% of recorded ransomware extortion cases.

Why are attackers abandoning file encryption?

Data encryption causes operational noise, triggers instant incident response, and requires complex recovery infrastructure. Pure data-theft extortion allows attackers to exfiltrate critical intellectual property quietly and monetize it through multiple channels (ransoms, dark web auctions, competitor sales) without risking payload failure or system restoration from backups.

How does AI lower the cost of cyberattacks?

Traditionally, post-exploitation, lateral movement, and data analysis required hours of hands-on human labor by skilled hackers. By delegating reconnaissance, script generation, and data evaluation to AI models operating via low-cost APIs, cybercriminals can run multi-target attacks concurrently at a cost of less than $4.00 per target.

Defensive Recommendations & Mitigation

To defend against automated AI-driven extortion campaigns targeting developer tools and repositories:

  1. Rotate Credentials & Audit CI/CD Secrets:
    • Scan repositories for exposed access tokens, SSH keys, and database passwords.
    • Mandate multi-factor authentication (MFA) and hardware keys on all developer portals.
  2. Restrict Network Access:
    • Remove public internet accessibility for self-hosted GitLab, Jira, and internal portals. Limit access exclusively through Zero-Trust Network Access (ZTNA) or VPN allowlists.
  3. Monitor CI/CD Runner Behaviors:
    • Implement automated detection for bulk repository cloning, unexpected HTTP PUT exfiltration requests, reverse shell execution (Netcat, Penelope), and unauthorized PostgreSQL command executions.
  4. Patch Critical Infrastructure:
    • Regularly update GitLab and developer tools to mitigate known RCE and account takeover vulnerabilities (including CVE-2023-7028 and CVE-2021-22205).

Watch Our Latest Video
Stay ahead with expert insights on privacy, cybersecurity, artificial intelligence, data protection and compliance.
No Leak, No Wahala
Published: August 16, 2026
Daily Privacy News
Cybersecurity Updates
Data Protection Tips
GDPR & NDPA Explained
Tags:
Ikeh James Certified Data Protection Officer (CDPO) | NDPC-Accredited

Ikeh James Ifeanyichukwu is a Certified Data Protection Officer (CDPO) accredited by the Institute of Information Management (IIM) in collaboration with the Nigeria Data Protection Commission (NDPC). With years of experience supporting organizations in data protection compliance, privacy risk management, and NDPA implementation, he is committed to advancing responsible data governance and building digital trust in Africa and beyond. In addition to his privacy and compliance expertise, James is a Certified IT Expert, Data Analyst, and Web Developer, with proven skills in programming, digital marketing, and cybersecurity awareness. He has a background in Statistics (Yabatech) and has earned multiple certifications in Python, PHP, SEO, Digital Marketing, and Information Security from recognized local and international institutions. James has been recognized for his contributions to technology and data protection, including the Best Employee Award at DKIPPI (2021) and the Outstanding Student Award at GIZ/LSETF Skills & Mentorship Training (2019). At Privacy Needle, he leverages his diverse expertise to break down complex data privacy and cybersecurity issues into clear, actionable insights for businesses, professionals, and individuals navigating today’s digital world.

  • 1

You Might also Like

Leave a Reply

Your email address will not be published. Required fields are marked *

  • Rating

This site uses Akismet to reduce spam. Learn how your comment data is processed.