The Biggest Supply Chain Hack Of 2025: 6M Records Exfiltrated from Oracle Cloud Affecting Over 140k Tenants

Listen to this Post

A recent claim by an adversary suggests a massive breach of Oracle Cloud, compromising over 6 million records, including sensitive customer secrets. The attackers allegedly exploited a vulnerability in Oracle Middleware (CVE-2021-35587), published in January 2022, to gain access to `login.(region-name).oraclecloud.com` servers. The stolen data reportedly includes SSO passwords, Java Keystore (JKS) files, key files, and enterprise manager JPS keys (source). Oracle denies any breach (source), but the incident highlights the growing trend of attacks on cloud providers, following previous breaches like Midnight Blizzard (Microsoft) and Okta.

You Should Know:

1. Monitor Threat Intelligence

Stay updated on breach disclosures and threat actor tactics. Use tools like:


<h1>Fetch threat intelligence feeds</h1>

curl -s https://otx.alienvault.com/api/v1/pulses/subscribed | jq '.results[] | .name, .description'

<h1>Monitor Oracle-related logs</h1>

grep -i "oraclecloud" /var/log/syslog 

#### **2. Rotate All Oracle Cloud Secrets**

Immediately rotate API keys, certificates, and credentials:


<h1>Generate new SSH keys</h1>

ssh-keygen -t ed25519 -f ~/.ssh/oracle_new_key

<h1>Rotate Oracle DB passwords</h1>

ALTER USER sys IDENTIFIED BY "NewStrongPassword!2025"; 

#### **3. Detect Suspicious Activity**

Check for unusual logins or data exfiltration:


<h1>Audit Oracle Cloud access logs</h1>

cat /var/log/oracle/access.log | grep "failed|unauthorized"

<h1>Check for unexpected outbound connections</h1>

netstat -tulnp | grep -E 'oracle|java' 

#### **4. Patch Vulnerable Middleware**

If using Oracle Middleware, verify patches for CVE-2021-35587:


<h1>Check installed Oracle Middleware version</h1>

opatch lsinventory | grep -i "Middleware"

<h1>Apply the latest patch</h1>

opatch apply /path/to/patch/35587_fix.zip 

#### **5. Secure Java Keystores (JKS)**

Recreate compromised JKS files:


<h1>Generate a new keystore</h1>

keytool -genkeypair -alias new_key -keyalg RSA -keystore /path/to/new_keystore.jks

<h1>Verify JKS integrity</h1>

keytool -list -v -keystore /path/to/keystore.jks 

### **What Undercode Say:**

Cloud providers are prime targets for adversaries, and third-party breaches demand swift action. Assume compromise, rotate credentials, and audit logs aggressively. Use Linux/Windows commands like netstat, grep, and `keytool` to validate security postures. The Oracle incident underscores the need for robust supply chain risk management—automate secret rotation, enforce MFA, and segment cloud environments.

### **Expected Output:**

  • Updated JKS files and SSH keys.
  • Cleared logs of unauthorized access.
  • Patched Oracle Middleware.
  • Active monitoring for anomalous traffic.

**Relevant URLs:**

References:

Reported By: Daniel Hood – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅

Join Our Cyber World:

💬 Whatsapp | 💬 TelegramFeatured Image