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
    • 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-2025-68434

CVE-2025-68434: Open Source Point Of Sale CSRF Vulnerability

CVE-2025-68434 is a Cross-Site Request Forgery flaw in Open Source Point of Sale that allows attackers to create admin accounts remotely. This post explains its impact, affected versions, and mitigation steps.

Published: April 29, 2026

CVE-2025-68434 Overview

A Cross-Site Request Forgery (CSRF) vulnerability in Open Source Point of Sale (opensourcepos) allows unauthenticated remote attackers to perform unauthorized administrative actions by exploiting disabled CSRF protection. This web-based point of sale application, built on the CodeIgniter PHP framework, explicitly disabled its CSRF protection mechanism, enabling attackers to create rogue administrator accounts and achieve complete system takeover.

Critical Impact

Successful exploitation allows attackers to silently create new Administrator accounts with full privileges, leading to complete system compromise and loss of confidentiality, integrity, and availability.

Affected Products

  • Open Source Point of Sale versions 3.4.0 to prior to 3.4.2
  • opensourcepos:open_source_point_of_sale

Discovery Timeline

  • 2025-12-17 - CVE-2025-68434 published to NVD
  • 2025-12-18 - Last updated in NVD database

Technical Details for CVE-2025-68434

Vulnerability Analysis

This vulnerability stems from a fundamental security misconfiguration where CSRF protection was explicitly disabled in the application's filter configuration file (app/Config/Filters.php). Without CSRF token validation, the application processes state-changing POST requests without verifying their legitimacy or origin.

The attack scenario requires social engineering: an attacker hosts a malicious web page containing crafted form submissions targeting the opensourcepos application. When an authenticated administrator visits this malicious page, their browser automatically sends the forged requests to the application with the administrator's session cookies attached. Since no CSRF token verification occurs, the application accepts these requests as legitimate.

The most critical exploitation path involves creating a new Administrator account with full privileges. This grants the attacker persistent access to the system, enabling them to manipulate sales data, access financial records, modify inventory, extract customer information, and completely control the point of sale infrastructure.

Root Cause

The root cause is the explicit disabling of the CSRF filter in app/Config/Filters.php. The protection mechanism that should have validated CSRF tokens on all state-changing requests was commented out or removed, leaving the application vulnerable to cross-origin request attacks. This configuration oversight allowed the application to accept POST requests without any origin validation or token verification.

Attack Vector

The attack requires network access and user interaction. An attacker must craft a malicious webpage containing hidden forms or JavaScript that automatically submits requests to the vulnerable opensourcepos instance. The attack flow proceeds as follows:

  1. Attacker identifies a target opensourcepos installation (versions 3.4.0 to 3.4.1)
  2. Attacker creates a malicious HTML page with auto-submitting forms targeting the user creation endpoint
  3. Attacker lures an authenticated administrator to visit the malicious page
  4. The administrator's browser sends the forged request with valid session credentials
  5. The application processes the request without CSRF validation, creating a new admin account
  6. Attacker gains full administrative access to the point of sale system

The vulnerability is documented in the GitHub Security Advisory GHSA-wjm4-hfwg-5w5r. A proof-of-concept demonstrating the unauthorized administrator creation is available in the CVE-2025-68434 PoC Repository.

Detection Methods for CVE-2025-68434

Indicators of Compromise

  • Unexpected administrator accounts appearing in the system user list
  • User creation events in application logs without corresponding legitimate administrative sessions
  • Web server logs showing POST requests to user management endpoints from unusual referrer URLs
  • Access patterns indicating administrator actions occurring shortly after visits to external websites

Detection Strategies

  • Monitor application logs for user creation events, particularly administrator account creations
  • Implement web application firewall rules to detect cross-origin POST requests to sensitive endpoints
  • Review access logs for suspicious referrer headers on state-changing requests
  • Audit user accounts regularly for unauthorized administrator entries

Monitoring Recommendations

  • Enable detailed logging for all user management operations in opensourcepos
  • Configure alerting for new administrator account creation events
  • Monitor for unusual patterns in administrative session activity
  • Implement network traffic analysis to detect potential CSRF attack attempts

How to Mitigate CVE-2025-68434

Immediate Actions Required

  • Upgrade Open Source Point of Sale to version 3.4.2 or later immediately
  • Audit existing administrator accounts and remove any unauthorized entries
  • Review application logs for signs of previous exploitation
  • Force password resets for all legitimate administrator accounts as a precaution

Patch Information

The vulnerability has been patched in version 3.4.2. The fix re-enables the CSRF filter in app/Config/Filters.php and resolves associated AJAX race conditions by adjusting token regeneration settings. The security patch is documented in commit d575c8da9a1d7af8313a1e758e000e243f5614ef and the associated pull request #4349.

Workarounds

  • Administrators can manually re-enable the CSRF filter in app/Config/Filters.php by uncommenting the protection line; however, this may cause functionality issues in the Sales module due to token synchronization problems
  • Restrict network access to the opensourcepos application to trusted networks only
  • Implement a web application firewall with CSRF protection rules as an additional defense layer
  • Limit administrator access to dedicated secure workstations that minimize exposure to potentially malicious websites

The recommended approach is to apply the full patch rather than manual workarounds, as the patch addresses both the CSRF protection and the associated AJAX race conditions that can cause functionality breakage when CSRF is manually re-enabled.

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechOpensourcepos

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.16%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-352
  • Technical References
  • GitHub PoC Repository

  • GitHub Pull Request
  • Vendor Resources
  • GitHub Commit Reference

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-32712: Open Source Point Of Sale XSS Vulnerability

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

  • CVE-2026-26745: OpenSourcePOS SQL Injection Vulnerability

  • CVE-2026-26746: Open Source Point Of Sale RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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