Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2023-36331

CVE-2023-36331: xmall Authentication Bypass Vulnerability

CVE-2023-36331 is an authentication bypass flaw in xmall v1.1 that allows attackers to access other users' order details by manipulating the userId parameter. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2023-36331 Overview

CVE-2023-36331 is an Insecure Direct Object Reference (IDOR) vulnerability affecting xmall v1.1, an open-source e-commerce platform. The vulnerability exists in the /member/orderList API endpoint, which fails to properly validate user authorization before returning order details. Attackers can exploit this flaw by manipulating the userId query parameter to access order information belonging to other users without authentication or authorization checks.

This broken access control vulnerability allows unauthorized disclosure of sensitive customer data including order histories, personal information, and potentially payment details stored within order records.

Critical Impact

Unauthorized access to customer order details exposes sensitive personal and transaction data, potentially affecting all users of affected xmall deployments.

Affected Products

  • xmall v1.1
  • xmall e-commerce platform (prior versions may also be affected)

Discovery Timeline

  • 2026-01-12 - CVE CVE-2023-36331 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2023-36331

Vulnerability Analysis

This vulnerability is classified as CWE-639: Authorization Bypass Through User-Controlled Key. The /member/orderList API endpoint accepts a userId parameter that directly controls which user's order data is retrieved from the database. The application fails to verify that the requesting user has authorization to access the specified user's orders.

The attack can be executed remotely over the network without requiring any privileges or user interaction. The primary impact is high confidentiality breach, as attackers can exfiltrate sensitive order information from any user account. There is also a low integrity impact, as the vulnerability may allow attackers to enumerate user IDs and gather information for further attacks.

Root Cause

The root cause is a missing authorization check in the order list API handler. When processing requests to /member/orderList, the application directly uses the user-supplied userId parameter to query the database without validating that the authenticated session belongs to the same user ID. This allows any user (or unauthenticated attacker) to retrieve order details for arbitrary users by simply changing the userId value in the request.

Attack Vector

The attack vector involves sending HTTP requests to the /member/orderList endpoint with modified userId parameter values. An attacker would:

  1. Identify the vulnerable API endpoint and its parameter structure
  2. Capture a legitimate request containing a userId parameter
  3. Systematically modify the userId value to enumerate other users' order data
  4. Extract sensitive order information including customer names, addresses, order contents, and payment information

The vulnerability is exploitable through simple parameter manipulation in API requests. Since the attack requires no authentication and can be performed over the network, any internet-exposed xmall installation is at risk.

For detailed technical information about this vulnerability, refer to the GitHub Issue Discussion.

Detection Methods for CVE-2023-36331

Indicators of Compromise

  • Unusual patterns of API requests to /member/orderList with varying userId parameters from a single IP address
  • High volume of order list queries that don't correlate with legitimate user sessions
  • API requests where the userId parameter doesn't match the authenticated user's session
  • Sequential or enumerated userId values in request logs indicating automated exploitation

Detection Strategies

  • Implement API request logging and monitor for requests where userId parameter mismatches session user ID
  • Deploy Web Application Firewall (WAF) rules to detect parameter tampering patterns on sensitive endpoints
  • Enable anomaly detection for unusual access patterns to customer data APIs
  • Configure alerting for high-frequency API requests from single sources targeting user-specific endpoints

Monitoring Recommendations

  • Monitor access logs for the /member/orderList endpoint for anomalous request patterns
  • Track failed authorization attempts and correlate with subsequent successful data access
  • Implement real-time alerting for bulk data extraction patterns from order-related APIs
  • Review audit logs regularly for unauthorized cross-user data access attempts

How to Mitigate CVE-2023-36331

Immediate Actions Required

  • Audit and restrict access to the /member/orderList API endpoint immediately
  • Implement server-side session validation to ensure users can only access their own order data
  • Deploy temporary WAF rules to block requests with mismatched userId parameters
  • Review application logs for evidence of prior exploitation

Patch Information

No official vendor patch information is currently available. Organizations using xmall should monitor the GitHub Issue Discussion for updates and community-provided fixes. Consider implementing the following authorization controls in your deployment:

  1. Validate that the userId parameter matches the authenticated session's user identifier
  2. Remove the userId parameter from the API and derive it from the authenticated session instead
  3. Implement proper access control checks at the API layer

Workarounds

  • Modify the API handler to ignore client-supplied userId and retrieve the value from the authenticated session instead
  • Implement middleware that validates userId parameter against session user ID and rejects mismatches
  • Place the vulnerable endpoint behind additional authentication layers or restrict access via network segmentation
  • Consider temporarily disabling the /member/orderList endpoint if not critical to operations until proper authorization is implemented
bash
# Example nginx configuration to block suspicious requests
# Add to server block protecting xmall application
location /member/orderList {
    # Rate limit to slow enumeration attacks
    limit_req zone=api_limit burst=5 nodelay;
    
    # Log all requests for forensic analysis
    access_log /var/log/nginx/orderlist_access.log detailed;
    
    # Consider blocking until patch is applied
    # return 503;
    
    proxy_pass http://backend;
}

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechN/A

  • SeverityHIGH

  • CVSS Score8.2

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-639
  • Technical References
  • GitHub Issue Discussion
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English