AI-Assisted Phishing Toolkit Found on Exposed Server

Exposed Server Reveals Attacker's AI-Powered Phishing Toolkit

MEDIUM
July 21, 2026
5m read
PhishingMalwareThreat Actor

Impact Scope

People Affected

Potentially thousands of individuals in Mexico

Industries Affected

Government

Geographic Impact

Mexico (national)

Related Entities

Organizations

Rapid7 Mexico

Products & Tech

CoderrrSimba Service

Other

Ubisoft

Full Report

Executive Summary

Researchers at Rapid7 have uncovered a misconfigured server that provided a detailed look into a modern, AI-enhanced phishing and malware operation. The exposed server, containing over 1,000 files, revealed a toolkit used by a likely Russian-speaking operator to target Windows users in Mexico. The attacker leveraged an "LLM-assisted workflow," using Large Language Models (LLMs) to generate convincing phishing content, create detailed test plans for exploits, and manage the overall campaign. The operation delivered an infostealer via a fake government ID-lookup website hosted over WebDAV. The server's admin panel, named Simba Service, was left open with default credentials, revealing a high volume of traffic. This discovery highlights a significant trend where individual cybercriminals are adopting AI to professionalize their operations and increase their efficiency.


Threat Overview

The discovered infrastructure reveals a cybercriminal operation that is more akin to a modern software development project than a typical ad-hoc attack. The threat actor used AI as a force multiplier for several stages of the attack lifecycle.

Key Components of the Operation:

  • Target: Windows users in Mexico.
  • Lure: A fake government ID-lookup website.
  • Delivery Mechanism: WebDAV, a protocol that allows users to manage files on a remote web server.
  • Payload: An unspecified infostealer malware, and plans for a modular .NET Remote Access Trojan (RAT).
  • Management: The Simba Service admin panel to track campaign metrics.
  • AI Integration: The use of LLMs (possibly an open-source agent named Coderrr) for content generation and planning.

Logs from the Simba Service panel showed that between June 20 and June 26, 2026, the server processed over 77,000 requests from nearly 3,900 unique IPs, with the vast majority originating from Mexico.

Technical Analysis

The attacker's reliance on AI is the most significant finding. This "LLM-assisted workflow" was evident in several artifacts found on the server:

  • Phishing Content Generation: The text for the phishing pages was well-written and convincing, characteristic of AI-generated content. This allows attackers to overcome language barriers and create high-quality lures quickly.
  • Exploit Testing and Planning: The operator maintained detailed test matrices and plans for potential exploits, structured in a way that suggests they were generated by an AI assistant. This brings a level of rigor and organization typically seen in professional QA teams.
  • Code Generation: Some JavaScript code on the server showed formatting and comments (including heavy use of emojis) consistent with output from AI coding assistants like Coderrr.

Attack Chain:

  1. Phishing (T1566.002): The victim is lured to the fake government website.
  2. Execution via WebDAV: The victim is tricked into executing the infostealer payload delivered via the WebDAV share.
  3. Credential Access (T1555): The infostealer harvests credentials from browsers, email clients, and other applications.
  4. Command and Control (T1071.001): The stolen data is exfiltrated to the attacker's server.

The server also contained plans for a second campaign involving a modular .NET RAT, which would be sideloaded using a legitimate, signed binary from Ubisoft to evade detection (T1574.002 - DLL Side-Loading).

Impact Assessment

The primary impact of this operation is the theft of sensitive personal and financial information from victims in Mexico. The use of AI, however, has broader implications:

  • Increased Sophistication: AI lowers the barrier for less-skilled attackers to conduct sophisticated campaigns.
  • Increased Efficiency: Attackers can automate tedious tasks like content creation and testing, allowing them to launch more campaigns more quickly.
  • Improved Evasion: AI can be used to generate polymorphic malware and constantly changing phishing lures, making signature-based detection less effective.

This case study provides concrete evidence of how individual threat actors are operationalizing AI, a trend that security defenders must now contend with.

IOCs — Directly from Articles

No specific file hashes, IP addresses, or domains were provided in the source articles.

Detection & Response

  • Phishing Detection: Use email security gateways that can analyze for signs of AI-generated text and scan URLs for phishing indicators. (D3FEND: URL Analysis)
  • Network Traffic Analysis: Monitor for connections over WebDAV to unusual or uncategorized domains. Block WebDAV traffic at the firewall if it is not required for business purposes. (D3FEND: Inbound Traffic Filtering)
  • Endpoint Detection: Monitor for the execution of unsigned binaries or scripts downloaded from the internet. EDR tools can detect the behaviors of infostealers, such as accessing browser credential stores. (D3FEND: Process Analysis)
  • DLL Side-Loading Detection: Monitor for legitimate, signed processes (like those from Ubisoft) loading unsigned or anomalously named DLLs from unusual directories.

Mitigation

  1. User Education: Train users to be skeptical of unsolicited emails and messages, especially those that create a sense of urgency related to government services. Teach them to verify the authenticity of a website before entering credentials. (M1017 - User Training)
  2. Email Security: Implement advanced email security solutions that use machine learning to detect phishing attempts.
  3. Restrict WebDAV: If not essential for business, block outbound WebDAV (ports 80, 443 with PROPFIND/MKCOL methods) traffic at the network perimeter. (M1037 - Filter Network Traffic)
  4. Application Control: Use application control solutions to prevent the execution of unauthorized software downloaded from the internet. (M1038 - Execution Prevention)

Timeline of Events

1
June 20, 2026
Start of a one-week period where the attacker's server handled over 77,000 requests.
2
June 26, 2026
End of the one-week period of high traffic to the attacker's server.
3
July 21, 2026
This article was published

MITRE ATT&CK Mitigations

Train users to identify and report sophisticated, AI-generated phishing emails and to be cautious of websites requiring personal information.

Use web filters to block access to newly registered or uncategorized domains often used in phishing campaigns.

Mapped D3FEND Techniques:

Block non-essential protocols like WebDAV at the network perimeter if they are not required for business operations.

Mapped D3FEND Techniques:

Use application allowlisting to prevent the execution of unauthorized malware droppers and RATs.

Mapped D3FEND Techniques:

D3FEND Defensive Countermeasures

To counter AI-assisted phishing campaigns, organizations must deploy advanced URL analysis at the email gateway and web proxy. Since LLMs can generate flawless text, traditional content-based filters may fail. Modern defenses should perform real-time analysis of URLs in emails, checking them against threat intelligence feeds for newly registered domains, known phishing kits, or domains with a poor reputation. For the Mexico campaign, this would involve flagging the fake government ID-lookup site. Furthermore, URL sandboxing or isolation technology can be used to open links in a secure, remote environment, protecting the user from any malicious content or scripts on the page. This prevents the initial compromise even if a user clicks on a highly convincing, AI-generated phishing link.

To prevent the execution of the infostealer payload, organizations should implement application control policies. A simple but effective approach is Executable Denylisting, configured to block the execution of files from locations where users do not typically run programs, such as temporary internet folders, zip archives, or WebDAV shares. For the attack targeting Mexican users, a policy blocking executables launched from a network path (\\server\webdav\...) would have been effective. A more mature approach is application allowlisting, where only known, approved applications are permitted to run. This would have prevented both the initial infostealer and the planned .NET RAT from executing, regardless of how they were delivered.

Timeline of Events

1
June 20, 2026

Start of a one-week period where the attacker's server handled over 77,000 requests.

2
June 26, 2026

End of the one-week period of high traffic to the attacker's server.

Sources & References

Article Author

Jason Gomes

Jason Gomes

• Cybersecurity Practitioner

Cybersecurity professional with over 10 years of specialized experience in security operations, threat intelligence, incident response, and security automation. Expertise spans SOAR/XSOAR orchestration, threat intelligence platforms, SIEM/UEBA analytics, and building cyber fusion centers. Background includes technical enablement, solution architecture for enterprise and government clients, and implementing security automation workflows across IR, TIP, and SOC use cases.

Threat Intelligence & AnalysisSecurity Orchestration (SOAR/XSOAR)Incident Response & Digital ForensicsSecurity Operations Center (SOC)SIEM & Security AnalyticsCyber Fusion & Threat SharingSecurity Automation & IntegrationManaged Detection & Response (MDR)

Editorial Standards & Analyst Review

CyberNetSec.io uses automation to assist source monitoring, deduplication, observable extraction, and structured intelligence generation. Published analysis follows human-defined editorial standards and adds defensive context including MITRE ATT&CK, D3FEND, STIX, and Sigma where applicable. Read our editorial policy.

Tags

PhishingAILLMMalwareInfostealerRapid7WebDAVMexico

📢 Share This Article

Help others stay informed about cybersecurity threats

🎯 MITRE ATT&CK Mapped

Every tactic, technique, and sub-technique used in this threat has been identified and mapped to the MITRE ATT&CK framework for consistent, actionable threat language.

🧠 Enriched & Analyzed

Observables and indicators of compromise (IOCs) have been extracted and cataloged. Risk has been assessed and correlated with known threat actors and historical campaigns.

🛡️ Actionable Guidance

Detection rules, incident response steps, and D3FEND-aligned mitigation strategies are included so your team can act on this intelligence immediately.

🔗 STIX Visualizer

Structured threat data is packaged as a STIX 2.1 bundle and can be visualized as an interactive graph — relationships between actors, malware, techniques, and indicators.

Sigma Generator

Sigma detection rules are derived from the threat techniques in this article and can be converted for deployment across any major SIEM or EDR platform.