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
    • 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-25265

CVE-2019-25265: Online Inventory Manager XSS Vulnerability

CVE-2019-25265 is a stored cross-site scripting flaw in Online Inventory Manager 3.2 that enables attackers to inject malicious scripts via admin group descriptions. This article covers technical details, exploitation risks, and mitigation.

Published: February 6, 2026

CVE-2019-25265 Overview

Online Inventory Manager 3.2 contains a stored cross-site scripting (XSS) vulnerability in the group description field within the admin edit groups section. This vulnerability allows attackers with authenticated access to inject malicious JavaScript code through the description field. When other users view the groups page, the stored malicious script executes in their browser context, potentially leading to cookie theft, session hijacking, and unauthorized client-side script execution.

Critical Impact

Authenticated attackers can persistently inject malicious scripts that execute whenever users access the affected admin groups page, enabling session hijacking and credential theft.

Affected Products

  • Online Inventory Manager version 3.2
  • BigProf Online Inventory Manager application

Discovery Timeline

  • 2026-02-03 - CVE CVE-2019-25265 published to NVD
  • 2026-02-04 - Last updated in NVD database

Technical Details for CVE-2019-25265

Vulnerability Analysis

This stored cross-site scripting vulnerability (CWE-79) exists in the Online Inventory Manager application's administrative interface. The vulnerable component is the group description field located in the admin edit groups section. The application fails to properly sanitize or encode user-supplied input before storing it in the database and subsequently rendering it on the groups management page.

When an administrator or authorized user inputs data into the group description field, the application accepts arbitrary content including JavaScript code without proper input validation or output encoding. This malicious content is then stored persistently in the application's database. Each time the groups page is rendered for any user, the stored script payload executes within the victim's browser session.

The attack requires network access and user interaction (the victim must navigate to the affected page), but once the payload is stored, it will execute automatically for all users viewing the compromised content.

Root Cause

The root cause of this vulnerability is improper input validation and missing output encoding (CWE-79) in the group description field processing logic. The application does not sanitize special characters such as <, >, ", and ' when accepting user input, nor does it apply proper HTML entity encoding when rendering the stored content back to users. This allows script tags and JavaScript event handlers to be interpreted as executable code rather than being displayed as plain text.

Attack Vector

The attack vector is network-based and requires authenticated access to the admin edit groups functionality. An attacker with valid credentials can navigate to the group management section and inject a crafted JavaScript payload into the group description field. The payload is stored in the database and executed whenever any user accesses the groups page.

A typical attack scenario involves injecting script content such as JavaScript code that steals session cookies and transmits them to an attacker-controlled server. The attacker could also inject code that performs actions on behalf of the victim user, potentially escalating privileges or modifying application data. For detailed technical exploitation information, refer to the Exploit-DB #47725 entry and the VulnCheck Advisory.

Detection Methods for CVE-2019-25265

Indicators of Compromise

  • Presence of <script> tags or JavaScript event handlers (e.g., onerror, onload, onclick) in group description database fields
  • Unusual outbound requests from the web application to external domains when users access the groups page
  • Suspicious entries in web server access logs showing encoded script payloads in form submission data
  • User reports of unexpected browser behavior or security warnings when accessing the admin groups section

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block XSS payload patterns in form submissions
  • Deploy Content Security Policy (CSP) headers to restrict inline script execution and report violations
  • Monitor database contents for HTML/JavaScript injection patterns in text fields
  • Review application logs for suspicious input containing script tags or event handlers

Monitoring Recommendations

  • Enable CSP reporting to capture and alert on blocked script execution attempts
  • Configure SIEM rules to correlate web server logs with database modification events for the groups table
  • Implement real-time monitoring for outbound connections from user sessions to unknown external domains
  • Set up alerts for authentication events followed by group modification activities from unusual IP addresses

How to Mitigate CVE-2019-25265

Immediate Actions Required

  • Audit all existing group description entries in the database for malicious script content and sanitize any compromised records
  • Restrict access to the admin edit groups functionality to only essential personnel until patches are applied
  • Implement Content Security Policy headers with strict script-src directives to prevent inline script execution
  • Deploy a web application firewall with XSS filtering rules as a temporary protective measure

Patch Information

No official vendor patch information is available in the current CVE data. Administrators should monitor the BigProf website and the Online Inventory Manager application page for security updates. If using a self-hosted or customized version, consider implementing custom input validation and output encoding as described in the workarounds section.

Workarounds

  • Apply HTML entity encoding to all user-supplied input before storing in the database, converting characters like <, >, ", ', and & to their HTML entity equivalents
  • Implement strict Content Security Policy headers: Content-Security-Policy: default-src 'self'; script-src 'self'; object-src 'none';
  • Use server-side input validation to reject or strip potentially dangerous characters and HTML tags from the group description field
  • Consider using a sanitization library to filter HTML content while preserving safe formatting if rich text is required
bash
# Apache .htaccess Content Security Policy configuration
Header set Content-Security-Policy "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; object-src 'none'; frame-ancestors 'self';"
Header set X-Content-Type-Options "nosniff"
Header set X-XSS-Protection "1; mode=block"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechOnline Inventory Manager

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:P/VC:L/VI:L/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
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • BigProf Main Page

  • BigProf Application Overview

  • Exploit-DB #47725

  • VulnCheck Advisory on XSS
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox 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