CVE-2026-47744 IBM QRadar · QRadar

Detect Shopper Framework Authorization Bypass and RBAC Privilege Escalation in Team Settings in IBM QRadar

CVE-2026-47744 is a critical authorization bypass and RBAC privilege escalation vulnerability in the Shopper e-commerce framework (composer package shopper/framework) affecting versions prior to 2.8.0. An authenticated low-privileged user can bypass role-based access controls in team settings to escalate privileges or perform unauthorized administrative actions. A public proof-of-concept exists, making active exploitation likely. CVSS score 9.9.

MITRE ATT&CK

Tactic
Privilege Escalation Persistence

QRadar Detection Query

IBM QRadar (QRadar)
sql
SELECT
  sourceip,
  "URL" AS request_path,
  "Method" AS http_method,
  "Response Code" AS status_code,
  COUNT(*) AS request_count,
  UNIQUECOUNT("URL") AS distinct_paths,
  MIN(starttime) AS first_seen,
  MAX(starttime) AS last_seen
FROM events
WHERE
  LOGSOURCETYPENAME(devicetype) IN ('Apache HTTP Server', 'Microsoft IIS', 'Nginx')
  AND ("URL" ILIKE '%/teams%'
    OR "URL" ILIKE '%/team-settings%'
    OR "URL" ILIKE '%/roles%'
    OR "URL" ILIKE '%/permissions%'
    OR "URL" ILIKE '%/members%')
  AND ("URL" ILIKE '%shopper%' OR "URL" ILIKE '%/api/%')
  AND "Method" IN ('POST', 'PUT', 'PATCH', 'DELETE')
  AND "Response Code" IN ('200', '201', '204')
  AND LOGSOURCETIME(starttime) > NOW() - 1 HOURS
GROUP BY sourceip, "URL", "Method", "Response Code"
HAVING COUNT(*) > 5 OR UNIQUECOUNT("URL") > 3
ORDER BY request_count DESC
critical severity medium confidence

QRadar AQL query identifying suspicious repeated successful mutations to Shopper framework team management endpoints from a single source IP, which may indicate exploitation of the authorization bypass in CVE-2026-47744.

Data Sources

Apache HTTP ServerMicrosoft IISNginx

Required Tables

events

False Positives & Tuning

  • Administrative scripts performing bulk team configuration updates
  • Integration services synchronizing team membership from external identity providers
  • Authorized penetration testing activities against the Shopper application
  • Deployment pipelines that configure team roles post-deployment

Other platforms for CVE-2026-47744


Testing Methodology

Validate this detection against 4 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.

  1. Test 1Shopper RBAC Bypass — Escalate to Admin via Team Settings API

    Expected signal: HTTP POST to /api/teams/1/members with 200/201 response code from a low-privileged account; database INSERT into team_user or role_user table with admin role association

  2. Test 2Shopper RBAC Bypass — Modify Existing Team Member Role to Admin

    Expected signal: HTTP PATCH to /api/teams/1/members/{id} returning 200 from a non-admin session token; corresponding UPDATE in the role_user or team_user database table

  3. Test 3Shopper RBAC Bypass — Create New Admin Account via Team Invitation

    Expected signal: HTTP POST to /api/teams/1/invitations with admin role returning 200/201 from low-privileged token; invitation record created in database with role=admin; email delivery event to attacker-controlled address

  4. Test 4Shopper RBAC Bypass — Enumerate Team Permissions and Extract Sensitive Data

    Expected signal: Multiple GET requests to admin-restricted endpoints (/api/teams, /api/settings, /api/orders) returning 200 from a recently-escalated non-admin account; unusual access pattern to sensitive data endpoints

Unlock Pro Content

Get the full detection package for CVE-2026-47744 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections