Hacker Claims Sale of Million Records Stolen from Oracle Cloud Servers

Listen to this Post

A threat actor named “rose87168” claimed to have stolen six million records from Oracle Cloud servers. The stolen data reportedly includes:
– Java Key Store (JKS) files
– Encrypted Single Sign-On (SSO) passwords
– Hashed Lightweight Directory Access Protocol (LDAP) passwords
– Key files
– Enterprise Manager Java Platform Security (JPS) keys

This breach poses severe risks, including privilege escalation, backdoor access, and large-scale identity theft.

🔗 Source: Cyber Security News

You Should Know:

1. How to Detect Oracle Cloud Compromises

Use these Linux commands to check for unauthorized access:


<h1>Check active connections</h1>

netstat -tuln

<h1>Audit Oracle Cloud logs (if accessible)</h1>

grep "authentication failure" /var/log/oracle-cloud.log

<h1>Check for unusual processes</h1>

ps aux | grep -E '(java|oracle|ldap)'

2. Securing JKS Files & Keys

If JKS files are compromised, **rotate keys immediately:


<h1>Generate a new keypair</h1>

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

<h1>List entries in a JKS file (verify integrity)</h1>

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

3. LDAP Password Reset & Auditing

If LDAP hashes are exposed:


<h1>Force password reset (OpenLDAP)</h1>

ldappasswd -x -D "cn=admin,dc=example,dc=com" -W -S "uid=user,ou=people,dc=example,dc=com"

<h1>Check LDAP logs for breaches</h1>

grep "bind failed" /var/log/slapd.log

4. Detecting SSO Token Misuse

Check SSO token validity (if using Kerberos):


<h1>List active Kerberos tickets</h1>

klist

<h1>Force re-authentication</h1>

kdestroy && kinit

5. Forensic Analysis in Windows (if Oracle Cloud runs on Windows Servers)


<h1>Check suspicious Oracle-related processes</h1>

Get-Process | Where-Object { $<em>.Name -like "<em>java</em>" -or $</em>.Name -like "<em>oracle</em>" }

<h1>Audit failed logins</h1>

Get-WinEvent -FilterHashtable @{LogName='Security'; ID=4625}

What Undercode Say:

This breach highlights critical cloud security flaws. Key takeaways:
Rotate all exposed keys & certificates (JKS, JPS, LDAP).
Enforce Multi-Factor Authentication (MFA) for Oracle Cloud.
Monitor network traffic for unusual Oracle-related connections.
Segment critical databases from public-facing servers.
Use SIEM tools (Splunk, Wazuh) to detect anomalies.

Expected Output:

  • Oracle Cloud admins should audit logs, revoke compromised keys, and enforce stricter access controls.
  • Security teams must assume breach posture and hunt for persistence mechanisms.

🔗 Further Reading:

References:

Reported By: Cybersecurity News – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅

Join Our Cyber World:

💬 Whatsapp | 💬 TelegramFeatured Image