Skip to content
Back to Blog
·14 min read·news

Oracle PeopleSoft Data Breach: ShinyHunters Hits 100+ Orgs

Oracle PeopleSoft vulnerability exploited by ShinyHunters hits 100+ orgs globally. Indian SMBs: act now on CERT-In 6-hour reporting and DPDP Act obligations.

BR

Bachao.AI Research Team

Cybersecurity Research

Source: BleepingComputer

Get Your Free VAPT Scan

Business impact of this development

Emerging threats move fast. Indian SMBs are primary targets because they're under-defended. Here's what you need to know and do now.

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.

100+Organizations breached in this campaign
MillionsEmployee records potentially exposed across victims
72 hoursTypical ShinyHunters exfiltration-to-listing window
6 hoursCERT-In mandatory breach notification deadline
45%PeopleSoft deployments estimated to be behind on Oracle CPU patches
165+Companies hit in ShinyHunters' prior Snowflake campaign (2024)

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.

⚠️
WARNING
If your organization uses Oracle PeopleSoft — or contracts a vendor that does — you must verify your patch level, review exposed endpoints, and confirm your breach notification workflow today. CERT-In's 6-hour window leaves zero margin for "we will check tomorrow."

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:#e2e8f0

Once 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:

sql
-- 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;
⚠️
WARNING
Enable Oracle Unified Auditing on 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 Scan

How 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 LayerSpecific ActionDifficulty
Patch ManagementApply Oracle Critical Patch Update — latest July 2025 CPU minimumMedium
Network SegmentationMove PIA off public internet; VPN-gate all PeopleSoft accessMedium
MFA EnforcementEnable multi-factor auth on all PeopleSoft admin and self-service accountsEasy
DB Audit LoggingEnable Oracle Unified Auditing on all HR and payroll tablesMedium
Credential RotationRotate all PeopleSoft service account and admin passwords immediatelyEasy
Dark Web MonitoringMonitor for leaked PeopleSoft credentials on paste sites and forumsHard
Incident ResponseDocument and test your CERT-In 6-hour notification procedure nowEasy
DPDP ComplianceMap PeopleSoft data flows to DPDP Act data processor agreementsMedium

Quick Fix: Check Your PeopleSoft Exposure Right Now

bash
# 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
bash
# 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;
EOF
💡
TIP
If you do not have a PeopleSoft DBA on staff, your managed services vendor should be able to run these queries within the hour. Do not wait for the next maintenance window — run them now and share the output with your security team.

By 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" : 15

ShinyHunters' 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.

2021ShinyHunters breaches T-Mobile — ~53M customer records confirmed stolen (breach disclosed August 2021)
2022Oracle patches CVE-2022-21500 (PeopleSoft auth bypass) in Critical Patch Update
2023DPDP Act enacted — Indian organizations now face mandatory breach reporting
2024ShinyHunters tied to Snowflake credential-stuffing campaign hitting 165+ companies
2025Oracle issues multiple PIA-related patches; adoption rates remain dangerously low
June 2026ShinyHunters targets Oracle PeopleSoft — 100+ organizations compromised globally

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.

ℹ️
INFO
The CERT-In annual report for 2025 documented a 19% year-on-year rise in enterprise application attacks. ERP systems — including SAP, PeopleSoft, and Oracle Fusion — now rank among the top five targeted asset categories in India-linked incidents.

How Bachao.AI Detects This

🎯Key Takeaway
Bachao.AI by Dhisattva AI Pvt Ltd, DPIIT Recognized Startup, maps directly to every stage of the PeopleSoft attack chain:
    1. 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.
    2. 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.
    3. API Security Scanning tests PeopleSoft's REST APIs and Integration Broker endpoints for broken authentication, IDOR, and injection vulnerabilities that standard patch management misses.
    4. 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.
    5. 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.
This is exactly why I built Bachao.AI — to make enterprise-grade security capabilities accessible to Indian organizations that do not have a 50-person security team sitting behind a PeopleSoft deployment.

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?
ShinyHunters is a prolific cybercriminal extortion group that has targeted Oracle PeopleSoft servers in a campaign claiming over 100 victim organizations globally as of June 2026. The group stated that the majority of impacted organizations are in the education sector. Any organization running internet-facing PeopleSoft PIA environments — particularly for HR, payroll, or ERP — is at risk, including Indian enterprises, IT services firms, PSUs, and managed HR service providers who host PeopleSoft on behalf of clients.
Which Oracle PeopleSoft vulnerability is being exploited in this breach?
Attackers are leveraging unpatched authentication bypass and deserialization vulnerabilities in PeopleSoft's Internet Architecture (PIA) layer. Known exploitable flaws such as CVE-2022-21500 (patched in Oracle Critical Patch Update April 2022) are among the documented authentication bypass vectors in PeopleSoft self-service portals. Oracle addresses these in quarterly Critical Patch Updates (CPUs); organizations not current on the July 2025 CPU are at elevated risk. Applying the latest Oracle CPU is the single most effective immediate mitigation.
Under the DPDP Act and CERT-In rules, what are Indian organizations required to do after a PeopleSoft breach?
Under India's Digital Personal Data Protection (DPDP) Act, 2023, organizations must notify the Data Protection Board of India upon discovery of a personal data breach. The CERT-In April 2022 directive additionally mandates reporting any cybersecurity incident within 6 hours of detection — failure to comply carries regulatory penalties. Organizations should also review their data processor agreements with any PeopleSoft vendors or managed HR service providers, as data fiduciary obligations apply regardless of whether you own the server.
How do I know if my PeopleSoft system has already been compromised by ShinyHunters?
Check Oracle DB audit logs for bulk SELECT queries on HR and payroll tables (especially PS_PERSONAL_DATA, PS_PAY_EARNINGS) from unusual users or outside business hours. Look for newly created admin accounts, unexpected outbound network connections from your PeopleSoft app server, and anomalous PeopleSoft Query Manager activity. Monitor dark web forums and paste sites for your organization's credentials. A professional VAPT assessment can definitively surface indicators of compromise that internal logs alone may miss.
What data is typically stolen in a PeopleSoft breach and why is it dangerous?
PeopleSoft HR systems hold among the most sensitive organizational data: employee names, national IDs, Aadhaar-linked records, bank account numbers for payroll, PAN card details, salary structures, and login credentials. This data enables identity fraud, payroll diversion attacks, targeted phishing against employees, and lateral movement into other enterprise systems if credentials are reused — making PeopleSoft breaches far more damaging than most consumer-facing data leaks.
Can Indian SMBs realistically defend against a threat actor as capable as ShinyHunters?
Yes — the majority of ShinyHunters' successful intrusions exploit unpatched vulnerabilities and internet-exposed interfaces, not zero-days. Applying Oracle CPUs promptly, placing PeopleSoft behind a VPN, enabling database audit logging, enforcing MFA on admin accounts, and running regular VAPT assessments closes the primary attack vectors. Automated dark web monitoring gives early warning if credentials surface before an attack escalates. These are not Fortune 500-only capabilities — they are accessible to any Indian SMB through platforms like Bachao.AI.

Originally reported by BleepingComputer.

Written by Shouvik Mukherjee, Founder, Bachao.AI. Follow me on LinkedIn for daily cybersecurity insights for Indian businesses.

BR

Bachao.AI Research Team

Cybersecurity Research

AI-powered security research and threat intelligence from the Bachao.AI team. Covering the latest vulnerabilities, CVEs, and cybersecurity developments affecting Indian businesses.

Get cybersecurity insights for Indian SMBs

Weekly vulnerability alerts, DPDP compliance tips, and security guides. No spam — unsubscribe anytime.

We respect your privacy. Your email is never shared.

Find the gaps attackers use for initial access — before they do

Free automated scan — risk score in under 2 hours. No credit card required.

Get Your Free VAPT Scan
Find your vulnerabilitiesStart free scan →