Oracle PeopleSoft Data Breach: ShinyHunters Hits 100+ Orgs
The Oracle PeopleSoft vulnerability exploited by the ShinyHunters extortion gang has claimed over 100 organizations worldwide — and if your business runs Oracle PeopleSoft for HR, payroll, or ERP, you need to act today. First reported by BleepingComputer on June 10, 2026, ShinyHunters has been systematically targeting exposed PeopleSoft portals, exploiting unpatched vulnerabilities to exfiltrate sensitive employee records, payroll data, and corporate credentials at scale. This is not a theoretical risk. It is happening right now, and the blast radius is enormous.
I have spent years building enterprise systems for Fortune 500 companies, and PeopleSoft was always the backbone of HR and payroll at that scale. The attack surface has not changed — what has changed is the industrialized sophistication of the groups now targeting it.
What Is the Oracle PeopleSoft Data Breach by ShinyHunters?
ShinyHunters — one of the most prolific data-theft and extortion groups operating today — launched a coordinated campaign against Oracle PeopleSoft servers, claiming to have compromised over 100 organizations across multiple industries and geographies. The breach, disclosed in June 2026, involves targeted exploitation of internet-facing PeopleSoft Internet Architecture (PIA) components — the Java-based web interface layer that gives employees and HR teams browser access to payroll, benefits, and HR records.
ShinyHunters' modus operandi is well-documented: identify unpatched enterprise systems, exploit known CVEs, harvest credentials in bulk, and then either sell stolen data on dark web marketplaces or extort victim organizations directly. In this campaign, stolen data reportedly includes employee personally identifiable information (PII), payroll records, HR documents, and administrative credentials — exactly the material that fuels identity fraud, payroll diversion scams, and cascading downstream attacks against other systems sharing those credentials.
What makes this particularly alarming is the operational scale. Over 100 organizations in a single campaign points to automated scanning and exploitation pipelines — not opportunistic hacking but industrialized, assembly-line data theft. ShinyHunters explicitly stated that the majority of victims are in the education sector, with universities and higher-education institutions among the confirmed targets (Nottingham University has publicly acknowledged the incident). Several affected organizations are also headquartered in Asia, and India is a region where PeopleSoft deployments are deeply embedded in enterprise operations.
Why This Matters for Indian Businesses
PeopleSoft is deeply embedded in India's enterprise landscape. Large IT services firms, manufacturing conglomerates, public sector undertakings, and mid-size companies with 500+ employees routinely use PeopleSoft for HR, payroll, and benefits administration. The data stored in these systems is among the most sensitive in any organization: Aadhaar-linked employee records, salary structures, PAN card details, bank account numbers for payroll disbursement, and performance appraisal data.
Under the Digital Personal Data Protection (DPDP) Act, 2023, organizations that suffer a breach of this kind are obligated to notify the Data Protection Board of India. The CERT-In directive (April 2022) is even more demanding: any cybersecurity incident must be reported to CERT-In within 6 hours of detection — not 6 hours from when you patch, but 6 hours from when you first know. For Indian SMBs that outsource HR to a PeopleSoft-using payroll vendor or run a managed PeopleSoft environment, even if they do not own the server, they remain data fiduciaries under the DPDP Act and carry legal responsibility for the data they hand to processors.
As someone who has reviewed hundreds of Indian SMB security postures, the most common gap I find is this: businesses assume their ERP vendor is handling security end-to-end. The vendor secures the platform. You are responsible for securing your use of it — configuration, access controls, patch schedules, and credential hygiene.
Oracle PeopleSoft Vulnerability: How the Attack Works
The attack chain ShinyHunters is exploiting follows a well-documented pattern. PeopleSoft's PIA exposes a Java-based stack — Tuxedo application server, WebLogic, and the underlying Oracle database — accessible via browser. Internet-facing PIA endpoints without proper network controls or with unpatched CVEs become entry points within minutes of being discovered by automated scanners.
Known exploitable vulnerabilities in PeopleSoft PIA include authentication bypass and deserialization flaws. CVE-2022-21500 (patched in Oracle Critical Patch Update April 2022) is among the known authentication bypass flaws in PeopleSoft self-service portals that enables unauthenticated access to sensitive data. Once inside, attackers leverage PeopleSoft Query Manager and direct database access to enumerate and dump tables containing employee records at scale.
graph TD
A[PIA Portal Exposed] -->|CVE Exploit| B[Auth Bypass]
B -->|Query Manager Abuse| C[DB Enumeration]
C -->|Bulk SQL Export| D[PII Stolen]
D -->|Dark Web Listing| E[Extortion]
C -->|Cred Harvest| F[Lateral Move]
F -->|Shared Passwords| G[Deeper Breach]
style A fill:#1e3a5f,stroke:#3B82F6,color:#e2e8f0
style B fill:#1e3a5f,stroke:#3B82F6,color:#e2e8f0
style C fill:#1e3a5f,stroke:#3B82F6,color:#e2e8f0
style D fill:#1e3a5f,stroke:#3B82F6,color:#e2e8f0
style E fill:#1e3a5f,stroke:#3B82F6,color:#e2e8f0
style F fill:#1e3a5f,stroke:#3B82F6,color:#e2e8f0
style G fill:#1e3a5f,stroke:#3B82F6,color:#e2e8f0Once authenticated — legitimately or via bypass — attackers enumerate PeopleSoft's HR tables: PS_EMPLOYEES, PS_PERSONAL_DATA, PS_PAY_EARNINGS. A 5,000-employee company's data can be exfiltrated in minutes over a standard connection. Below is a simplified example of the query pattern attackers run after gaining DB access — understanding this helps defenders know exactly what to hunt for in database audit logs:
-- Attacker pattern: look for these in DB audit logs
SELECT EMPLID, NAME, NATIONAL_ID, BIRTHDATE, EMAIL_ADDR
FROM PS_PERSONAL_DATA
WHERE EFFDT = (SELECT MAX(EFFDT) FROM PS_PERSONAL_DATA);
-- Bulk payroll data dump pattern
SELECT EMPLID, ERNCD, OTH_HRS, OTH_PAY
FROM PS_PAY_EARNINGS
ORDER BY PAY_END_DT DESC;
-- Also watch for admin credential enumeration
SELECT OPRID, OPRDEFNDESC, EMAILID
FROM PSOPRDEFN
WHERE ACCTLOCK = 0;PS_PERSONAL_DATA, PS_PAY_EARNINGS, and PS_EMPLOYEES tables immediately. Bulk SELECT queries executing outside business hours from unfamiliar OS users are your earliest indicator of active compromise.The lateral movement phase is where smaller organizations suffer disproportionately. PeopleSoft admin credentials are frequently reused across Active Directory, internal portals, and cloud accounts. ShinyHunters knows this and pivots aggressively once the first credential set is in hand.
Know your vulnerabilities before attackers do
Run a free VAPT scan — takes 5 minutes, no signup required.
Book Your Free ScanHow Can Indian SMBs Protect Against This PeopleSoft Breach?
The good news: most PeopleSoft breaches are preventable with known defenses applied in the right order. Here is a prioritized action plan:
| Protection Layer | Specific Action | Difficulty |
|---|---|---|
| Patch Management | Apply Oracle Critical Patch Update — latest July 2025 CPU minimum | Medium |
| Network Segmentation | Move PIA off public internet; VPN-gate all PeopleSoft access | Medium |
| MFA Enforcement | Enable multi-factor auth on all PeopleSoft admin and self-service accounts | Easy |
| DB Audit Logging | Enable Oracle Unified Auditing on all HR and payroll tables | Medium |
| Credential Rotation | Rotate all PeopleSoft service account and admin passwords immediately | Easy |
| Dark Web Monitoring | Monitor for leaked PeopleSoft credentials on paste sites and forums | Hard |
| Incident Response | Document and test your CERT-In 6-hour notification procedure now | Easy |
| DPDP Compliance | Map PeopleSoft data flows to DPDP Act data processor agreements | Medium |
Quick Fix: Check Your PeopleSoft Exposure Right Now
# Check if PeopleSoft PIA is exposed to the internet
# Replace YOUR_PS_DOMAIN with your actual PeopleSoft URL
curl -I -m 10 https://YOUR_PS_DOMAIN/psp/ps/EMPLOYEE/HRMS/c/ROLE_EMPLOYEE.GBL
# A 200 response WITHOUT an auth redirect = critical public exposure
curl -s -o /dev/null -w "%{http_code}" \
https://YOUR_PS_DOMAIN/psc/ps/EMPLOYEE/HRMS/c/SELF_SERVICE.SS_ESS_MAIN.GBL
# Check PeopleTools version on app server (compare against Oracle CPU advisory)
psadmin -c version -d HRMS 2>/dev/null | grep -i peopletools# Check for suspicious outbound connections from PeopleSoft app server
ss -tunp | grep -E ':(443|8443|4444|1337)' | grep ESTABLISHED
# Hunt for bulk exfiltration in Oracle DB audit trail (run as sysdba)
sqlplus / as sysdba <<EOF
SELECT DB_USER, OS_USER, ACTION_NAME, OBJECT_NAME, TIMESTAMP
FROM DBA_AUDIT_TRAIL
WHERE OBJECT_NAME LIKE 'PS_%'
AND ACTION_NAME = 'SELECT'
AND TIMESTAMP > SYSDATE - 7
ORDER BY TIMESTAMP DESC
FETCH FIRST 50 ROWS ONLY;
EOFBy the Numbers
pie showData
title ShinyHunters PeopleSoft Breach Data Types (Illustrative breakdown based on typical PeopleSoft breach composition)
"Employee PII" : 40
"Payroll Records" : 25
"HR Documents" : 20
"Admin Credentials" : 15ShinyHunters' campaign is part of a broader, accelerating shift: attackers now prefer high-value ERP systems over consumer-facing applications. A single ERP compromise yields structured, immediately monetizable data on thousands of employees — a far better return per attack than consumer breaches requiring aggregation before they are useful.
xychart-beta
title "Estimated Enterprise ERP Incidents Reported to CERT-In"
x-axis [2021, 2022, 2023, 2024, 2025]
y-axis "Incidents" 0 --> 500
bar [120, 185, 260, 380, 450]When I was architecting security for large enterprises, ERP systems were universally treated as "trusted internal" — firewalled from the internet but barely audited from within. The implicit assumption was that if you were inside the network, you were trusted. That assumption is now being industrially exploited. ShinyHunters did not break that assumption; they just learned to live inside it.
How Bachao.AI Detects This
- VAPT Scan identifies exposed PeopleSoft PIA endpoints, tests for known CVEs including authentication bypasses, and flags unpatched WebLogic and Tuxedo components — before a threat actor does. Run a free VAPT scan today.
- Dark Web Monitoring continuously scans paste sites, hacker forums, and dark web marketplaces for your organization's PeopleSoft credentials and employee data — providing early warning before an extortion demand ever arrives in your inbox.
- API Security Scanning tests PeopleSoft's REST APIs and Integration Broker endpoints for broken authentication, IDOR, and injection vulnerabilities that standard patch management misses.
- Incident Response (24/7) provides immediate breach containment, forensic evidence preservation, and handles your mandatory CERT-In 6-hour notification — so you stay compliant even in a crisis.
- DPDP Compliance Assessment maps your PeopleSoft data flows to DPDP Act obligations, identifies gaps in your data processor agreements, and produces documentation ready for the Data Protection Board.
If your organization uses Oracle PeopleSoft — or relies on a vendor who does — run a free VAPT scan today. It takes under 5 minutes to initiate and you will know your exposure within hours. For more India-focused security guidance, explore the Bachao.AI blog.
Frequently Asked Questions
Frequently Asked Questions
What is the ShinyHunters Oracle PeopleSoft attack and which organizations are at risk?
Which Oracle PeopleSoft vulnerability is being exploited in this breach?
Under the DPDP Act and CERT-In rules, what are Indian organizations required to do after a PeopleSoft breach?
How do I know if my PeopleSoft system has already been compromised by ShinyHunters?
What data is typically stolen in a PeopleSoft breach and why is it dangerous?
Can Indian SMBs realistically defend against a threat actor as capable as ShinyHunters?
Originally reported by BleepingComputer.
Written by Shouvik Mukherjee, Founder, Bachao.AI. Follow me on LinkedIn for daily cybersecurity insights for Indian businesses.