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

CVE-2019-25682: Victoralagwu Cmssite CSRF Vulnerability

CVE-2019-25682 is a cross-site request forgery flaw in Victoralagwu Cmssite 1.0 that enables attackers to perform unauthorized admin actions. This article covers the technical details, affected versions, and mitigation.

Updated: May 16, 2026

CVE-2019-25682 Overview

CVE-2019-25682 is a cross-site request forgery [CWE-352] vulnerability in CMSsite 1.0 by victoralagwu. The flaw resides in the users.php endpoint, which processes administrative actions without validating request origin or anti-CSRF tokens. An attacker can craft a malicious HTML page that submits POST requests to users.php with parameters such as source=add_user, source=edit_user, or del=1. When an authenticated administrator visits the attacker-controlled page, the browser submits the forged request using the active session. This enables unauthorized creation, modification, or deletion of administrator accounts.

Critical Impact

Attackers can hijack administrative sessions to create rogue admin accounts or delete existing ones, leading to full takeover of the CMSsite installation.

Affected Products

  • victoralagwu CMSsite 1.0
  • Installations exposing users.php to authenticated administrators
  • Deployments without anti-CSRF token enforcement or SameSite cookie configuration

Discovery Timeline

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

Technical Details for CVE-2019-25682

Vulnerability Analysis

The vulnerability stems from missing CSRF protection on state-changing operations in the CMSsite administrative panel. The users.php script accepts POST requests for user management based solely on session cookies. No synchronizer token, double-submit cookie, or origin header validation is performed before executing privileged actions.

When an authenticated administrator browses to an attacker-controlled page, the page can auto-submit a hidden form targeting the CMSsite instance. The browser attaches the administrator's session cookie, and the server processes the action as legitimate. The source parameter selects the operation: add_user provisions a new account, edit_user modifies an existing one, and del=1 removes a user record.

Because the attacker controls all POST parameters in the forged form, they choose the new administrator's username, password, and role. Exploitation requires only that the victim hold an active admin session and load the crafted page. Refer to the VulnCheck Advisory on CMSsite CSRF and Exploit-DB #46480 for full technical details.

Root Cause

The application does not implement any anti-CSRF defense. There is no per-request token tied to the user session, no verification of the Origin or Referer header, and cookies are not configured with the SameSite attribute. Any cross-origin POST request carrying valid session cookies is honored.

Attack Vector

Exploitation is network-based and requires social engineering. The attacker hosts a page containing a hidden form pointing to the target CMSsite users.php endpoint. The administrator must be authenticated and must visit the page or click a malicious link. No user interaction beyond visiting the page is needed if the form auto-submits via JavaScript.

No verified proof-of-concept code is reproduced here. See the GitHub CMSsite Repository and Exploit-DB #46480 for the published exploit structure.

Detection Methods for CVE-2019-25682

Indicators of Compromise

  • Unexpected administrator accounts appearing in the CMSsite users table.
  • POST requests to /users.php with source=add_user, source=edit_user, or del=1 originating from external Referer headers.
  • Web server logs showing admin actions with Referer values pointing to domains outside the application.
  • Deleted or modified admin user records without corresponding administrator console activity.

Detection Strategies

  • Inspect HTTP access logs for POST requests to users.php and correlate the Referer header against the application's own hostname.
  • Monitor the users database table for inserts, updates, and deletes outside change-management windows.
  • Alert on consecutive admin authentication events followed by user-management POSTs from atypical IP geolocations.

Monitoring Recommendations

  • Forward web server and application logs to a centralized log platform and apply rules for cross-origin POSTs to administrative endpoints.
  • Track creation of accounts with administrative roles and require human review for each event.
  • Enable browser-side reporting through Content-Security-Policyreport-uri to surface unexpected form submissions.

How to Mitigate CVE-2019-25682

Immediate Actions Required

  • Restrict access to /users.php and the CMSsite admin directory by source IP or VPN until a fix is applied.
  • Audit all administrator accounts and remove any that cannot be attributed to legitimate provisioning.
  • Force a password reset and session invalidation for all administrators.
  • Configure session cookies with SameSite=Strict (or Lax) and the Secure and HttpOnly flags.

Patch Information

No vendor-supplied patch is listed in the NVD record or vendor advisories. The GitHub CMSsite Repository should be reviewed for any maintainer-supplied updates. Operators running CMSsite 1.0 should consider migrating to an actively maintained content management platform.

Workarounds

  • Place CMSsite behind a reverse proxy or web application firewall that strips cross-origin POST requests to /users.php.
  • Add a server-side anti-CSRF token to all state-changing forms and validate it on every POST.
  • Reject requests to administrative endpoints whose Origin or Referer header does not match the application's own hostname.
  • Limit administrator browser sessions to a dedicated browser profile that does not visit untrusted sites.
bash
# Example nginx rule rejecting cross-origin POSTs to users.php
location = /users.php {
    if ($request_method = POST) {
        set $csrf_block "0";
        if ($http_referer !~* "^https?://your-cmssite-host/") { set $csrf_block "1"; }
        if ($csrf_block = "1") { return 403; }
    }
    include fastcgi_params;
    fastcgi_pass unix:/run/php/php-fpm.sock;
}

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechVictoralagwu Cmssite

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:N/SC:L/SI:L/SA:L/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-352
  • Technical References
  • GitHub CMSsite Repository

  • Exploit-DB #46480

  • VulnCheck Advisory on CMSsite CSRF
  • Related CVEs
  • CVE-2019-25674: Victoralagwu Cmssite 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