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-2026-32712

CVE-2026-32712: Point of Sale Stored XSS Vulnerability

CVE-2026-32712 is a stored cross-site scripting flaw in Open Source Point of Sale that allows attackers to inject malicious scripts via customer names. This article covers technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-32712 Overview

A Stored Cross-Site Scripting (XSS) vulnerability has been identified in Open Source Point of Sale (OSPOS), a web-based point-of-sale application built with PHP using the CodeIgniter framework. The vulnerability exists in the Daily Sales management table where the customer_name column is configured with escape: false in the bootstrap-table column configuration. This configuration causes customer names to be rendered as raw HTML without proper sanitization.

An attacker with customer management permissions can inject arbitrary JavaScript code into a customer's first_name or last_name field. When any user views the Daily Sales page, the malicious script executes in their browser context, potentially leading to session hijacking, credential theft, or unauthorized actions performed on behalf of the victim user.

Critical Impact

Authenticated attackers can execute arbitrary JavaScript in the browsers of users viewing the Daily Sales page, potentially compromising administrative sessions and sensitive business data.

Affected Products

  • Open Source Point of Sale (OSPOS) versions prior to 3.4.3
  • PHP-based CodeIgniter implementations using bootstrap-table with unsafe column configurations
  • Web applications utilizing OSPOS as their point-of-sale backend

Discovery Timeline

  • 2026-04-07 - CVE CVE-2026-32712 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-32712

Vulnerability Analysis

This vulnerability is classified as CWE-79 (Improper Neutralization of Input During Web Page Generation). The root issue stems from improper output encoding in the Daily Sales management interface. The bootstrap-table JavaScript library used to render tabular data provides column configuration options, including an escape parameter that controls whether HTML entities in cell content are escaped.

In vulnerable versions of OSPOS, the customer_name column is explicitly configured with escape: false, meaning any HTML or JavaScript embedded in customer name fields will be rendered directly by the browser rather than displayed as text. This creates a persistent XSS vector since the malicious payload is stored in the database and executed every time the Daily Sales page is loaded.

The attack requires the adversary to have customer management permissions within the application. Once a malicious payload is injected into a customer record, it persists until the record is modified or deleted. This stored nature makes the vulnerability particularly dangerous as it can affect multiple users over an extended period without requiring further attacker interaction.

Root Cause

The vulnerability originates from unsafe bootstrap-table column configuration in the Daily Sales view. The customer_name column explicitly disables HTML escaping, allowing raw HTML content stored in the first_name and last_name database fields to be rendered without sanitization. This violates the principle of defense in depth, as output encoding should always be applied regardless of input validation measures.

Attack Vector

The attack exploits the network-accessible web interface and requires low privileges (customer management permissions) along with user interaction (victim must view the Daily Sales page). An attacker crafts a malicious customer record containing JavaScript in the name fields. When processed by the bootstrap-table rendering engine with escaping disabled, the JavaScript executes in the context of any user's session who views the compromised page.

For example, an attacker might create a customer with a first name containing a script tag that exfiltrates session cookies or performs actions using the victim's authenticated session. The malicious payload persists in the database, creating a stored XSS condition that affects all users who access the Daily Sales interface.

Technical details regarding the specific vulnerable code paths and exploitation techniques can be found in the GitHub Security Advisory.

Detection Methods for CVE-2026-32712

Indicators of Compromise

  • Customer records containing HTML tags or JavaScript code in first_name or last_name fields
  • Database entries with <script>, <img onerror=, <svg onload=, or similar XSS payload patterns in customer tables
  • Unusual outbound network requests originating from user browsers when viewing the Daily Sales page
  • Reports of unexpected browser behavior or pop-ups when accessing the sales management interface

Detection Strategies

  • Implement database monitoring to alert on customer name fields containing HTML special characters such as <, >, ", or '
  • Deploy web application firewall (WAF) rules to detect XSS payload patterns in customer creation and modification requests
  • Enable Content Security Policy (CSP) violation reporting to capture attempted script execution from unauthorized sources
  • Configure SentinelOne Singularity XDR to monitor for anomalous JavaScript execution patterns in browser contexts

Monitoring Recommendations

  • Review audit logs for customer record modifications, particularly changes to name fields
  • Monitor for unusual session activity following Daily Sales page access
  • Implement real-time alerting for database queries that insert HTML or script content into customer fields
  • Track and investigate any CSP violation reports related to the OSPOS application

How to Mitigate CVE-2026-32712

Immediate Actions Required

  • Upgrade Open Source Point of Sale to version 3.4.3 or later immediately
  • Audit existing customer records for malicious payloads in name fields and sanitize any suspicious entries
  • Implement Content Security Policy headers to mitigate the impact of any undetected XSS payloads
  • Review user accounts with customer management permissions and enforce principle of least privilege

Patch Information

The vulnerability has been addressed in OSPOS version 3.4.3. The fix modifies the bootstrap-table column configuration to properly escape HTML entities in the customer_name column, preventing injected scripts from executing. Organizations should upgrade to this version or apply the security patch as soon as possible.

For detailed patch information, refer to the GitHub Security Advisory.

Workarounds

  • If immediate patching is not possible, manually modify the bootstrap-table configuration to set escape: true for the customer_name column
  • Implement server-side input validation to strip HTML tags from customer name fields during record creation and modification
  • Deploy a web application firewall with XSS protection rules in front of the OSPOS application
  • Restrict access to the Daily Sales page to essential personnel only until the patch can be applied
bash
# Database query to identify potentially malicious customer records
mysql -u ospos_user -p ospos_database -e "SELECT id, first_name, last_name FROM ospos_customers WHERE first_name REGEXP '<[^>]+>' OR last_name REGEXP '<[^>]+>';"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechOpen Source Point Of Sale

  • SeverityMEDIUM

  • CVSS Score5.4

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-39380: Open Source POS Stored XSS Vulnerability

  • CVE-2026-32888: Point of Sale SQLi 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