The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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
    • 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-2026-33730

CVE-2026-33730: Open Source Point Of Sale Auth Bypass

CVE-2026-33730 is an authentication bypass flaw in Open Source Point of Sale allowing low-privileged users to change admin passwords via IDOR. This article covers technical details, affected versions, and mitigation.

Published: April 3, 2026

CVE-2026-33730 Overview

Open Source Point of Sale (opensourcepos) is a web-based point of sale application written in PHP using the CodeIgniter framework. CVE-2026-33730 is an Insecure Direct Object Reference (IDOR) vulnerability that allows an authenticated low-privileged user to access the password change functionality of other users, including administrators, by manipulating the employee_id parameter. The application fails to verify object ownership or enforce proper authorization checks, enabling horizontal and vertical privilege escalation through unauthorized password modifications.

Critical Impact

Authenticated attackers can compromise administrator accounts by changing their passwords, leading to complete system takeover of the point of sale application and potential access to sensitive financial and customer data.

Affected Products

  • Open Source Point of Sale (opensourcepos) versions prior to 3.4.2
  • opensourcepos open_source_point_of_sale

Discovery Timeline

  • 2026-03-27 - CVE-2026-33730 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-33730

Vulnerability Analysis

This vulnerability represents a classic Insecure Direct Object Reference (IDOR) flaw classified under CWE-639 (Authorization Bypass Through User-Controlled Key). The vulnerable getChangePassword() function in app/Controllers/Home.php accepts an employee_id parameter that determines which user's password can be modified. The original implementation used the can_modify_employee() method for authorization checks, but this method failed to properly restrict access based on the authenticated user's actual permissions.

An authenticated low-privileged user could simply enumerate or guess valid employee_id values and submit password change requests for arbitrary accounts. Since point of sale systems typically contain sensitive financial transaction data, customer information, and business records, the ability to compromise administrator accounts poses significant operational and compliance risks.

Root Cause

The root cause lies in insufficient object-level authorization within the password change functionality. The original can_modify_employee() check did not adequately verify that the current user has legitimate ownership or administrative rights over the targeted employee_id. The application trusted user-supplied input to determine which account's password should be modified without proper server-side validation of access rights.

Attack Vector

The attack vector is network-based and requires low-privileged authentication. An attacker with any valid user account can exploit this vulnerability through the following process:

  1. Authenticate to the opensourcepos application with a low-privileged account
  2. Navigate to the password change functionality
  3. Intercept and modify the HTTP request, changing the employee_id parameter to target a different user (such as an administrator)
  4. Submit the modified request to change the victim's password to an attacker-controlled value
  5. Log in as the compromised user with the newly set password

The vulnerability can be exploited via simple parameter manipulation in HTTP requests, requiring no specialized tools beyond a web browser or proxy interceptor.

php
     /**
      * Load "change employee password" form
      *
-     * @return string
+     * @return ResponseInterface|string
      * @noinspection PhpUnused
      */
-    public function getChangePassword(int $employeeId = NEW_ENTRY): string
+    public function getChangePassword(int $employeeId = NEW_ENTRY)
     {
         $loggedInEmployee = $this->employee->get_logged_in_employee_info();
         $currentPersonId = $loggedInEmployee->person_id;

         $employeeId = $employeeId === NEW_ENTRY ? $currentPersonId : $employeeId;

-        if (!$this->employee->can_modify_employee($employeeId, $currentPersonId)) {
-            header('Location: ' . base_url('no_access/home/home'));
-            exit();
+        if (!$this->employee->isAdmin($currentPersonId) && $employeeId !== $currentPersonId) {
+            return $this->response->setStatusCode(403)->setBody(lang('Employees.unauthorized_modify'));
         }

         $person_info = $this->employee->get_info($employeeId);

Source: GitHub Commit ee4d44ed396097d6010c5490ab4fd7cfae694624

The patch introduces proper object-level authorization by explicitly checking if the current user is an administrator OR if they are attempting to modify their own account. Non-admin users can now only change their own password, while admin users retain the ability to modify any account. The fix also improves error handling by returning a proper HTTP 403 status code instead of a redirect.

Detection Methods for CVE-2026-33730

Indicators of Compromise

  • Unusual password change requests where the employee_id parameter differs from the authenticated user's ID
  • Multiple password change attempts targeting different employee accounts from a single session
  • Successful password changes for administrator accounts initiated by non-admin user sessions
  • HTTP requests to password change endpoints with sequentially enumerated employee_id values

Detection Strategies

  • Implement web application firewall rules to alert on password change requests where the target user differs from the authenticated session
  • Review application logs for patterns of parameter manipulation in sensitive functionality endpoints
  • Monitor authentication logs for sudden administrator password changes followed by login activity from new IP addresses
  • Enable detailed logging on the password change functionality to capture the relationship between requester and target accounts

Monitoring Recommendations

  • Configure alerts for any password modification activity involving administrator-level accounts
  • Implement anomaly detection for bulk parameter enumeration patterns in HTTP request logs
  • Monitor for failed authorization attempts (HTTP 403 responses) to password change endpoints as indicators of exploitation attempts
  • Establish baseline patterns for legitimate password change behavior and alert on deviations

How to Mitigate CVE-2026-33730

Immediate Actions Required

  • Upgrade opensourcepos to version 3.4.2 or later immediately to apply the security patch
  • Audit password change logs to identify any unauthorized modifications that may have occurred
  • Force password resets for all administrator accounts as a precautionary measure
  • Review all user accounts for suspicious activity or unauthorized privilege changes

Patch Information

The vulnerability is addressed in opensourcepos version 3.4.2. The fix implements object-level authorization checks that verify the current user is either an administrator or is modifying their own account. The patch can be reviewed in commit ee4d44ed396097d6010c5490ab4fd7cfae694624. For detailed information, refer to the GitHub Security Advisory GHSA-mcc2-8rp2-q6ch.

Workarounds

  • If immediate patching is not possible, restrict network access to the opensourcepos application to trusted IP ranges only
  • Implement additional authentication factors for administrator accounts to reduce the impact of password compromise
  • Deploy a web application firewall rule to block or alert on password change requests where employee_id parameter manipulation is detected
  • Temporarily disable or restrict the password change functionality until the patch can be applied
bash
# Configuration example - Restrict access to opensourcepos at the web server level
# Apache configuration to limit access to trusted networks
<Location "/home/changePassword">
    Require ip 192.168.1.0/24
    Require ip 10.0.0.0/8
</Location>

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechOpensourcepos

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-639
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-mcc2-8rp2-q6ch
  • Related CVEs
  • CVE-2026-26745: OpenSourcePOS SQL Injection Vulnerability

  • CVE-2026-26746: Open Source Point Of Sale RCE Vulnerability

  • CVE-2025-70091: Open Source Point Of Sale XSS Vulnerability

  • CVE-2025-70093: Open Source Point Of Sale RCE 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