Detect Oracle PeopleSoft PeopleTools Missing Authentication for Critical Function (CVE-2026-35273) in IBM QRadar
CVE-2026-35273 is a missing authentication vulnerability (CWE-306) in Oracle PeopleSoft Enterprise PeopleTools. An unauthenticated remote attacker can access critical PeopleSoft functions without authentication, potentially leading to unauthorized data access, privilege escalation, or full system compromise. This vulnerability is listed on CISA's Known Exploited Vulnerabilities catalog, indicating active exploitation in the wild.
MITRE ATT&CK
QRadar Detection Query
SELECT
sourceip,
destinationip,
destinationport,
URL,
username,
"HTTP Response Code" as response_code,
COUNT(*) as event_count,
MIN(starttime) as first_seen,
MAX(starttime) as last_seen
FROM events
WHERE
LOGSOURCETYPENAME(devicetype) IN ('Microsoft IIS', 'Apache HTTP Server', 'F5 BIG-IP LTM', 'Nginx')
AND (
URL ILIKE '%/PSIGW/%'
OR URL ILIKE '%/psp/%'
OR URL ILIKE '%/psc/%'
OR URL ILIKE '%/PeopleSoftServices/%'
)
AND (
username IS NULL
OR username = '-'
OR username = 'anonymous'
)
AND "HTTP Response Code" IN ('200', '201', '302')
AND DATEFORMAT(starttime, 'yyyy-MM-dd') >= DATEADD('day', -1, NOW())
GROUP BY sourceip, destinationip, destinationport, URL, username, response_code
HAVING COUNT(*) >= 2
ORDER BY event_count DESC QRadar AQL query to identify unauthenticated successful HTTP requests to Oracle PeopleSoft PSIGW and critical function paths, indicative of CVE-2026-35273 exploitation attempts.
Data Sources
Required Tables
False Positives & Tuning
- Configured anonymous access endpoints within PeopleSoft for specific integrations
- Internal monitoring agents performing periodic availability checks
- ERP integration middleware using service accounts mapped differently in logs
- Automated backup or sync processes accessing PeopleSoft data endpoints
Other platforms for CVE-2026-35273
Testing Methodology
Validate this detection against 3 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.
- Test 1Unauthenticated PSIGW Endpoint Probe
Expected signal: IIS/Apache access log entry: source IP, URI /PSIGW/HttpListeningConnector, no username (-), HTTP status 200 or 500
- Test 2PeopleSoft PSP Component Unauthenticated Access Attempt
Expected signal: Web server log entry showing /psp/ path access from test IP, username field empty or anonymous, HTTP 200 or 302
- Test 3Simulated PeopleSoft Service Connector Enumeration
Expected signal: Multiple IIS/Apache log entries from same source IP to different PeopleSoft paths within short time window, all unauthenticated
References (5)
- https://www.oracle.com/security-alerts/alert-cve-2026-35273.html
- https://support.oracle.com/signin/
- https://www.cisa.gov/news-events/directives/bod-26-04-prioritizing-security-updates-based-risk
- https://www.cisa.gov/news-events/directives/bod-26-04-implementation-guidance-prioritizing-security-updates-based-risk
- https://nvd.nist.gov/vuln/detail/CVE-2026-35273
Unlock Pro Content
Get the full detection package for CVE-2026-35273 including response playbook, investigation guide, and atomic red team tests.