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-2019-25270

CVE-2019-25270: SOCA Access Control System XSS Flaw

CVE-2019-25270 is a cross-site scripting vulnerability in SOCA Access Control System 180612 that enables attackers to inject malicious scripts via the senddata parameter. This article covers technical details, impact, and mitigation.

Updated: January 22, 2026

CVE-2019-25270 Overview

SOCA Access Control System version 180612 contains a cross-site scripting (XSS) vulnerability in the senddata POST parameter of logged_page.php. This flaw allows attackers to inject malicious scripts by sending crafted POST requests, which can then execute arbitrary HTML and script code within a victim's browser session. When exploited, an attacker can potentially steal session cookies, perform actions on behalf of authenticated users, or redirect users to malicious websites.

Critical Impact

Attackers can execute arbitrary JavaScript in authenticated user sessions, potentially leading to session hijacking, credential theft, or unauthorized actions within the SOCA Access Control System.

Affected Products

  • SOCA Access Control System version 180612
  • SOCA Access Control System logged_page.php component

Discovery Timeline

  • 2026-01-08 - CVE CVE-2019-25270 published to NVD
  • 2026-01-08 - Last updated in NVD database

Technical Details for CVE-2019-25270

Vulnerability Analysis

This vulnerability is classified as CWE-79 (Improper Neutralization of Input During Web Page Generation), commonly known as Cross-Site Scripting (XSS). The flaw resides in the logged_page.php file within the SOCA Access Control System, specifically in how the application handles the senddata POST parameter.

The application fails to properly sanitize or encode user-supplied input before reflecting it back in the rendered web page. This lack of input validation allows malicious actors to inject arbitrary HTML and JavaScript code that executes within the security context of the vulnerable application.

Root Cause

The root cause of this vulnerability is insufficient input validation and output encoding in the logged_page.php script. When processing POST requests containing the senddata parameter, the application directly incorporates user-supplied data into the HTML response without proper sanitization. This violates secure coding principles that require all untrusted input to be validated, sanitized, and properly encoded before being included in web page output.

Attack Vector

The attack vector is network-based and requires user interaction. An attacker can exploit this vulnerability by crafting a malicious POST request containing JavaScript code in the senddata parameter. The attack typically involves:

  1. The attacker crafts a malicious form or request that submits attacker-controlled JavaScript through the senddata parameter
  2. A victim user with an active session is tricked into submitting this request (via social engineering or a malicious page)
  3. The vulnerable logged_page.php script processes the request and reflects the malicious script in the response
  4. The victim's browser executes the injected script within the context of the SOCA Access Control System session

The vulnerability allows execution of arbitrary scripts in the victim's browser, potentially enabling session hijacking, cookie theft, keylogging, or defacement of the application interface. For detailed technical information, refer to the ZeroScience Vulnerability ZSL-2019-5518 advisory.

Detection Methods for CVE-2019-25270

Indicators of Compromise

  • Unusual POST requests to logged_page.php containing script tags or JavaScript event handlers in the senddata parameter
  • Web server logs showing encoded script content (e.g., %3Cscript%3E) in POST parameters
  • Browser-based security alerts triggered by inline script execution policies
  • Unexpected session behavior or unauthorized actions in user accounts

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block XSS payloads in POST parameters
  • Enable Content Security Policy (CSP) headers to prevent execution of inline scripts
  • Monitor web server access logs for suspicious patterns in the senddata parameter
  • Deploy endpoint detection solutions that can identify browser-based exploitation attempts

Monitoring Recommendations

  • Enable detailed logging for all requests to logged_page.php and monitor for anomalous input patterns
  • Configure security information and event management (SIEM) alerts for XSS attack signatures
  • Implement real-time monitoring of authentication events to detect potential session hijacking

How to Mitigate CVE-2019-25270

Immediate Actions Required

  • Restrict access to the SOCA Access Control System to trusted networks only until a patch is available
  • Implement Web Application Firewall (WAF) rules to filter XSS payloads targeting the senddata parameter
  • Deploy Content Security Policy (CSP) headers to mitigate the impact of successful XSS attacks
  • Educate users about the risks of clicking on suspicious links or submitting untrusted forms

Patch Information

No official vendor patch has been identified in the available vulnerability data. Organizations should contact SocaTech directly to inquire about security updates for the SOCA Access Control System. Additional technical details are available from CXSecurity Issue WLB-2019050151, IBM X-Force Vulnerability #160976, and Packet Storm Security File #152837.

Workarounds

  • Implement server-side input validation and output encoding for the senddata parameter in logged_page.php
  • Deploy a reverse proxy or WAF with XSS filtering capabilities in front of the application
  • Restrict access to the SOCA Access Control System using network segmentation and firewall rules
  • Enable HTTPOnly and Secure flags on session cookies to reduce the impact of potential session theft
bash
# Example: WAF rule to block XSS in senddata parameter (ModSecurity)
SecRule ARGS:senddata "@detectXSS" "id:1001,phase:2,deny,status:403,msg:'XSS Attack Detected in senddata parameter'"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechSoca Access Control System

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/VI:N/VA:N/SC:L/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • CXSecurity Issue WLB-2019050151

  • IBM X-Force Vulnerability #160976

  • Packet Storm Security File #152837

  • SocaTech Homepage

  • ZeroScience Vulnerability ZSL-2019-5518
  • Latest CVEs
  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal Vulnerability

  • CVE-2026-40259: SiYuan Auth Bypass Vulnerability

  • CVE-2026-40255: AdonisJS HTTP Server CSRF 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