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 technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2019-25682 Overview

CVE-2019-25682 is a Cross-Site Request Forgery (CSRF) vulnerability affecting CMSsite version 1.0. This vulnerability allows attackers to perform unauthorized administrative actions by crafting malicious HTML forms. When authenticated administrators visit attacker-controlled pages, POST requests are submitted to the users.php endpoint with parameters like source=add_user, source=edit_user, or del=1 to create, modify, or delete admin accounts without proper authorization verification.

Critical Impact

Attackers can leverage this CSRF vulnerability to take complete control of the CMS by creating rogue administrator accounts, modifying existing admin credentials, or deleting legitimate administrator accounts, leading to full site compromise.

Affected Products

  • CMSsite 1.0 by victoralagwu
  • All installations of victoralagwu cmssite version 1.0

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

This Cross-Site Request Forgery vulnerability stems from the absence of anti-CSRF token validation in the users.php endpoint of CMSsite 1.0. The application fails to verify that state-changing requests originate from legitimate user sessions, allowing attackers to forge requests that execute administrative actions on behalf of authenticated users.

The vulnerable endpoint accepts several critical parameters that control user management functionality. When an attacker crafts a malicious HTML page containing hidden forms targeting the users.php endpoint, any authenticated administrator who visits this page will unknowingly submit requests that can add new administrator accounts (using source=add_user), modify existing user accounts (using source=edit_user), or delete users from the system (using del=1).

Root Cause

The root cause of CVE-2019-25682 is the missing implementation of CSRF protection mechanisms in the user management functionality of CMSsite. The users.php script processes POST requests without validating the origin of the request or checking for a unique session-bound token. This design flaw allows any HTTP request that reaches the endpoint with valid parameters to be processed, regardless of whether it was initiated by the legitimate user or an attacker.

Attack Vector

The attack vector for this vulnerability is network-based. An attacker exploits this vulnerability through a multi-stage attack:

  1. The attacker creates a malicious webpage containing hidden HTML forms targeting the vulnerable users.php endpoint
  2. The forms include parameters to create a new administrator account controlled by the attacker
  3. The attacker lures an authenticated CMSsite administrator to visit the malicious page
  4. Upon page load, JavaScript automatically submits the hidden form
  5. The victim's browser sends the forged request with the victim's authenticated session cookies
  6. CMSsite processes the request and creates the rogue administrator account

The attack requires no authentication from the attacker and can be executed remotely over the network. Technical details and proof-of-concept code are available in the Exploit-DB #46480 advisory.

Detection Methods for CVE-2019-25682

Indicators of Compromise

  • Unexpected administrator accounts appearing in the CMSsite user database
  • Audit logs showing user creation, modification, or deletion actions without corresponding legitimate administrator activity
  • Referer headers in server logs showing POST requests to users.php originating from external domains

Detection Strategies

  • Monitor web server access logs for POST requests to users.php with suspicious referer headers from external domains
  • Implement web application firewall (WAF) rules to detect CSRF attack patterns targeting user management endpoints
  • Deploy SentinelOne Singularity to detect anomalous web application behavior and unauthorized account modifications

Monitoring Recommendations

  • Enable comprehensive logging for all administrative actions within CMSsite
  • Configure alerts for new administrator account creation events
  • Implement session monitoring to detect requests with mismatched origin/referer headers
  • Review user management activity logs regularly for unauthorized changes

How to Mitigate CVE-2019-25682

Immediate Actions Required

  • Audit all existing administrator accounts and remove any unauthorized or suspicious accounts
  • Implement manual CSRF token validation for all state-changing operations in users.php
  • Restrict access to the CMSsite administrative panel to trusted IP addresses or VPN connections
  • Consider migrating to an actively maintained CMS solution with proper security controls

Patch Information

No official vendor patch is available for CMSsite 1.0. The project appears to be unmaintained. Organizations should consider implementing custom CSRF protections or migrating to a secure, actively maintained content management system. For more information, see the VulnCheck Security Advisory.

Workarounds

  • Add CSRF token validation manually to the users.php file by generating unique tokens per session and validating them on each POST request
  • Implement SameSite cookie attributes to prevent cross-origin request attacks
  • Deploy a web application firewall (WAF) with CSRF protection rules enabled
  • Require re-authentication for sensitive administrative actions like user creation or deletion
bash
# Configuration example - Apache .htaccess to restrict admin access by IP
<Files "users.php">
    Order Deny,Allow
    Deny from all
    Allow from 192.168.1.0/24
    Allow from 10.0.0.0/8
</Files>

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.01%

  • 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 PoC Repository

  • Exploit-DB #46480

  • VulnCheck Security Advisory
  • 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