ShinyHunters Claims FBI Hack via PeopleSoft Zero-Day Breach

SOC Briefing Summary :: Executive Key Takeaways
- [01]Threat summary: Notorious extortion gang ShinyHunters claims to have infiltrated FBI cloud infrastructure, stealing 2 to 3 TB of employee and recruit records.
- [02]Root cause vector: The group claims exploitation of an unauthenticated zero-day remote code execution vulnerability within Oracle PeopleSoft enterprise software.
- [03]Immediate action: Isolate internet-facing PeopleSoft ERP endpoints behind VPN/MFA gateways and audit PSAPPSRV process trees for abnormal child shells.
Executive Summary
Notorious cyber extortion collective ShinyHunters has publicly claimed responsibility for compromising internal systems belonging to the Federal Bureau of Investigation (FBI). According to claims made by the group on underground forums on September 22, 2026, the threat actors weaponized an unauthenticated zero-day vulnerability in Oracle PeopleSoft enterprise software. The intrusion reportedly enabled lateral access into FBI-managed cloud environments hosted on Amazon Web Services (AWS) GovCloud, culminating in the alleged theft of between 2 and 3 Terabytes of sensitive government records.
While independent security researchers and federal authorities continue to evaluate the technical veracity of the claims, the disclosure coincides with a broader, documented exploitation campaign targeting Oracle PeopleSoft instances across more than 100 enterprise organizations since June 2026. The allegedly stolen data includes complete personnel dossiers, background clearance questionnaires, employee identifying data, and confidential job applicant records spanning multiple federal hiring cycles.
Technical Vulnerability Analysis & Attack Chain
Oracle PeopleSoft enterprise resource planning (ERP) systems manage sensitive human capital management (HCM), financial, and supply chain operations. These architectures rely on complex multi-tier infrastructures comprising front-end web servers (typically Oracle WebLogic), proprietary Tuxedo application servers (PSAPPSRV), and backend relational databases.

1. Perimeter Enumeration & Architecture Targeting
ShinyHunters identified exposed PeopleSoft web interfaces exposed directly to the public internet. Organizations often expose candidate-facing applicant tracking portals or employee self-service modules without mandatory network-layer isolation. Attackers routinely probe for accessible WebLogic servlet handlers and PeopleSoft Internet Architecture (PIA) endpoints.
2. Alleged PeopleSoft Zero-Day RCE
ShinyHunters claims possession of a zero-day exploit enabling remote code execution without requiring valid tenant or administrative credentials. In documented PeopleSoft exploitation patterns, vulnerabilities often reside in Java deserialization flaws, unauthenticated JBridge/Tuxedo connectors, or template injection in PeopleCode handlers. Successful exploitation allows the adversary to bypass front-end reverse proxies and execute arbitrary commands under the operational context of the PeopleSoft application server (PSAPPSRV or java.exe).
3. Lateral Pivot into AWS GovCloud VPCs
Following initial host execution, the threat actors conducted credential harvesting and token dumping from server memory. On hybrid enterprise deployments, perimeter servers often maintain service accounts or hardcoded IAM role credentials enabling connectivity to backend cloud resources. The adversary leveraged these access keys to pivot from the perimeter DMZ into segmented AWS GovCloud Virtual Private Clouds (VPCs) hosting backend databases.
4. Mass Exfiltration of Personnel Archives
Operating within the GovCloud environment, the actors executed automated SQL dumps and siphoned database tables directly from relational storage. Staged archives—allegedly totaling up to 3 TB—were compressed, encrypted, and exfiltrated over external HTTPS channels. The stolen repository reportedly encompasses full employee directories, social security numbers, residential addresses, background investigation interview notes, and applicant submissions.
5. Coercive Extortion & Underground Disclosure
Rather than deploying ransomware encryption, ShinyHunters followed their established playbook of pure data extortion. The group published proof-of-breach notices on dark web forums to apply reputational pressure against federal leadership, threatening public dissemination or underground auction of the stolen records.
MITRE ATT&CK Tactics, Techniques & Procedures (TTPs)
| Tactic | Technique ID | Technique Name | Operational Context |
|---|---|---|---|
| Initial Access | T1190 | Exploit Public-Facing Application | Alleged unauthenticated zero-day RCE on Oracle PeopleSoft servers. |
| Execution | T1059.001 | Command and Scripting Interpreter: PowerShell | Command invocation spawned from application server processes. |
| Lateral Movement | T1537 | Transfer Data to Cloud Account | Pivoting from perimeter infrastructure into segmented AWS GovCloud VPCs. |
| Collection | T1005 | Data from Local System | Dumping employee and job applicant database tables. |
| Exfiltration | T1020 | Automated Exfiltration | Compressing and exfiltrating multi-terabyte personnel repositories. |
| Impact | T1485 | Data Destruction / Extortion | Public extortion and coercive data leak threats on dark web forums. |
Threat Actor Profile & Campaign Attribution
- Threat Actor (ShinyHunters): Active since early 2020, ShinyHunters is a prolific cybercriminal extortion syndicate responsible for dozens of high-profile data breaches across technology, healthcare, and retail sectors (including Ticketmaster, Santander, and AT&T). The group specializes in cloud infrastructure compromise, database theft, and public data brokerage.
- Wider Campaign Trajectory: The FBI breach claim follows a concerted campaign against enterprise PeopleSoft deployments. Threat intelligence telemetry recorded automated scanning and exploitation attempts against PeopleSoft installations across more than 100 organizations starting in mid-June 2026.
- Verification Caveats: Federal cybersecurity analysts note that while ShinyHunters has a history of high-volume breaches, threat actors also occasionally exaggerate victim scale or repackage older aggregator data to maximize extortion leverage. Federal agencies continue forensic audits to determine whether access was achieved via third-party contractor environments or direct agency cloud instances.
Detection & SOC Mitigation Playbook
1. Patch & Workaround Guidance
- Network Perimeter Isolation:
- Immediately restrict all public internet access to Oracle PeopleSoft Internet Architecture (PIA) and WebLogic administration ports.
- Require zero-trust network access (ZTNA) or corporate VPN with phishing-resistant MFA before granting access to employee or applicant portal login screens.
- Apply Latest Oracle Critical Patch Updates (CPU):
- Ensure all PeopleSoft PeopleTools environments are upgraded to the latest vendor patch release and audit custom PeopleCode for unsanitized user input handling.
2. Network & Perimeter Defenses
- WAF Inspection Rules:
- Enforce strict Web Application Firewall (WAF) rule sets inspecting HTTP requests directed to PeopleSoft servlets (
/psp/,/psc/,/pspc/). - Block requests containing serialized Java payloads, unexpected HTTP POST verbs, or anomalous User-Agent signatures.
- Enforce strict Web Application Firewall (WAF) rule sets inspecting HTTP requests directed to PeopleSoft servlets (
- Cloud Egress & IAM Hardening:
- Audit AWS GovCloud IAM roles assigned to EC2 instances hosting ERP services. Enforce least-privilege policies to prevent instances from querying unrelated S3 buckets or database endpoints.
3. Endpoint Detection & Hunting Query
Sigma Rule: Anomalous Process Execution Originating from Oracle PeopleSoft Application Servers
title: Suspicious Process Spawning from Oracle PeopleSoft Server
status: experimental
description: Detects suspicious child processes spawned from PeopleSoft Tuxedo (PSAPPSRV) or WebLogic Java processes.
logsource:
category: process_creation
product: windows
detection:
selection_parent:
ParentImage|endswith:
- '\PSAPPSRV.exe'
- '\pswatchsrv.exe'
- '\java.exe'
selection_child:
Image|endswith:
- '\cmd.exe'
- '\powershell.exe'
- '\pwsh.exe'
- '\wscript.exe'
- '\cscript.exe'
- '\certutil.exe'
condition: selection_parent and selection_child
level: critical
tags:
- attack.initial_access
- attack.t1190
- attack.execution
- attack.t1059.001Microsoft Defender for Endpoint (KQL) Hunting Query: PeopleSoft Web Server Exploitation
// Identify interactive command shells or network recon tools initiated by PeopleSoft service binaries
DeviceProcessEvents
| where Timestamp > ago(14d)
| where InitiatingProcessFileName in~ ("PSAPPSRV.exe", "pswatchsrv.exe", "java.exe")
| where InitiatingProcessCommandLine has_any ("peoplesoft", "weblogic", "psoft")
| where FileName in~ ("cmd.exe", "powershell.exe", "pwsh.exe", "net.exe", "whoami.exe", "curl.exe", "bitsadmin.exe")
| project Timestamp, DeviceName, InitiatingProcessFileName, InitiatingProcessCommandLine, FileName, ProcessCommandLine, AccountName
| sort by Timestamp desc| Indicator Type | Value / Context | Description |
|---|---|---|
| Threat Group | ShinyHunters | Financially motivated extortion syndicate |
| Targeted Application | Oracle PeopleSoft PeopleTools | Enterprise ERP and Human Capital Management suite |
| Targeted Infrastructure | AWS GovCloud | Claimed victim cloud environment hosting personnel backends |
| Stolen Volume Claim | 2 to 3 Terabytes | Claimed volume of employee dossiers and recruit records |
| Associated Process | PSAPPSRV.exe | PeopleSoft application server worker process |
| Associated Process | pswatchsrv.exe | PeopleSoft watchdog monitoring daemon |
| Associated Service | Oracle WebLogic PIA | Web portal interface targeted during initial access |
ShinyHuntersOracle PeopleSoftAWS GovCloudPSAPPSRV.exepswatchsrv.exe// VERIFIED_SOURCES_&_REFERENCES
Watch Full Video Briefings on YouTube
Subscribe to CyberNewsAI on YouTube for animated threat vectors, CISO breakdowns, and security briefings.
Related Threat Intelligence
View Archive
Sweden Fines Miljödata $183K Over 2.2M Citizen Data Breach
Sweden's privacy watchdog IMY fined software vendor Miljödata $183,000 under GDPR Article 32 after an extortion breach exposed 2.2 million citizen records.

Chinese Hackers Exploit WordPress, Zyxel Flaws for Govt Data
Chinese threat actors breached 49 organizations across 29 nations, chaining WordPress and Zyxel vulnerabilities to steal 18,500+ sensitive government records.

EvilTokens PhaaS Disrupted After 12,000 Microsoft Accounts Breached
Microsoft's Digital Crimes Unit and international partners disrupted the EvilTokens PhaaS platform after it hijacked over 12,000 enterprise cloud accounts.