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-25684

CVE-2019-25684: OpenDocMan SQL Injection Vulnerability

CVE-2019-25684 is an SQL injection flaw in OpenDocMan 1.3.4 that lets unauthenticated attackers manipulate database queries via the 'where' parameter. This article covers technical details, impact, and mitigation.

Published: April 10, 2026

CVE-2019-25684 Overview

CVE-2019-25684 is a SQL Injection vulnerability affecting OpenDocMan version 1.3.4, a web-based document management system. The vulnerability exists in the search.php file, where the where parameter is not properly sanitized before being used in database queries. This allows unauthenticated attackers to inject arbitrary SQL code through crafted GET requests, potentially compromising the entire database backend.

Critical Impact

Unauthenticated attackers can exploit this SQL injection vulnerability to extract sensitive database information, modify or delete data, and potentially achieve complete database compromise without any authentication.

Affected Products

  • OpenDocMan 1.3.4
  • OpenDocMan versions prior to 1.3.4 (potentially affected)

Discovery Timeline

  • 2026-04-05 - CVE-2019-25684 published to NVD
  • 2026-04-09 - Last updated in NVD database

Technical Details for CVE-2019-25684

Vulnerability Analysis

This SQL Injection vulnerability (CWE-89) occurs when user-supplied input through the where parameter in search.php is incorporated directly into SQL queries without proper sanitization or parameterization. The attack can be executed remotely over the network without requiring any authentication or user interaction, making it particularly dangerous for publicly accessible OpenDocMan installations.

The vulnerability enables attackers to manipulate the underlying SQL queries, which can result in unauthorized data extraction, data modification, or complete database compromise. Given that OpenDocMan is a document management system, successful exploitation could expose sensitive documents, user credentials, and confidential business information stored within the system.

Root Cause

The root cause of this vulnerability is improper input validation and the failure to use parameterized queries (prepared statements) when constructing SQL queries. The where parameter value is directly concatenated into SQL statements in search.php, allowing malicious SQL syntax to be interpreted as part of the query structure rather than as literal data.

Attack Vector

The attack is network-based and requires no authentication or privileges. An attacker can craft malicious HTTP GET requests to the search.php endpoint with SQL injection payloads embedded in the where parameter. The injected SQL code is then executed by the database server with the same privileges as the web application's database user.

The attack flow involves sending specially crafted requests where the where parameter contains SQL injection payloads designed to extract data, enumerate database structure, or perform other malicious database operations. Technical details and proof-of-concept examples can be found in the Exploit-DB #46500 advisory.

Detection Methods for CVE-2019-25684

Indicators of Compromise

  • Unusual or malformed GET requests to search.php containing SQL syntax characters such as single quotes, double dashes, UNION statements, or encoded SQL keywords
  • Database error messages appearing in web server logs or application responses indicating SQL syntax errors
  • Unexpected database queries or access patterns in database audit logs
  • Evidence of data exfiltration or unauthorized database access in forensic analysis

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block SQL injection patterns in the where parameter
  • Monitor web server access logs for requests to search.php containing suspicious characters or SQL keywords
  • Enable database query logging and audit for anomalous query patterns or errors
  • Deploy intrusion detection systems (IDS) with SQL injection signature detection capabilities

Monitoring Recommendations

  • Configure real-time alerting for SQL injection attack signatures in WAF and IDS systems
  • Establish baseline metrics for normal search.php usage patterns and alert on anomalies
  • Regularly review database audit logs for unauthorized access attempts or unusual query patterns
  • Monitor application error logs for database-related exceptions that may indicate exploitation attempts

How to Mitigate CVE-2019-25684

Immediate Actions Required

  • Upgrade OpenDocMan to the latest available version from SourceForge
  • If upgrade is not immediately possible, restrict access to search.php or disable the search functionality temporarily
  • Deploy Web Application Firewall (WAF) rules to filter SQL injection attempts targeting the where parameter
  • Review database accounts used by OpenDocMan and apply principle of least privilege

Patch Information

Users should obtain the latest version of OpenDocMan from the official SourceForge Project Files repository. Review the VulnCheck SQL Injection Advisory for detailed information about the vulnerability and remediation guidance.

Workarounds

  • Implement input validation on the where parameter to allow only expected characters and reject SQL metacharacters
  • Use a Web Application Firewall to block requests containing SQL injection patterns
  • Restrict network access to the OpenDocMan installation to trusted IP addresses only
  • Consider disabling the search functionality by removing or restricting access to search.php until a patch can be applied
bash
# Example .htaccess rule to restrict access to search.php
<Files "search.php">
    Order Deny,Allow
    Deny from all
    Allow from 192.168.1.0/24
</Files>

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechOpendocman

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:L/VA:N/SC:N/SI:N/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-89
  • Technical References
  • SourceForge Project Files

  • Exploit-DB #46500

  • VulnCheck SQL Injection Advisory
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31744: Linux Kernel NULL Pointer 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