Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2018-25200

CVE-2018-25200: PHP OOP CMS Blog CSRF Vulnerability

CVE-2018-25200 is a CSRF vulnerability in PHP OOP CMS Blog 1.0 that enables attackers to create admin accounts via malicious requests. This article covers technical details, affected versions, impact, and mitigation.

Published: March 13, 2026

CVE-2018-25200 Overview

CVE-2018-25200 is a Cross-Site Request Forgery (CSRF) vulnerability affecting OOP CMS BLOG version 1.0. This vulnerability allows unauthenticated attackers to create administrative user accounts by crafting malicious POST requests. Attackers can submit forms to the addUser.php endpoint with parameters including userName, password, email, and role set to administrative privileges to gain unauthorized access to the content management system.

Critical Impact

Successful exploitation enables attackers to create rogue administrative accounts, leading to complete takeover of the CMS, unauthorized content modification, and potential compromise of the underlying web server.

Affected Products

  • Tomalofficial PHP OOP CMS Blog 1.0
  • Systems running php_oop_cms_blog version 1.0

Discovery Timeline

  • 2026-03-06 - CVE-2018-25200 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2018-25200

Vulnerability Analysis

This vulnerability exists due to the absence of anti-CSRF token validation in the user creation functionality of OOP CMS BLOG. The addUser.php endpoint processes POST requests without verifying the legitimacy of the request origin, allowing attackers to forge requests on behalf of authenticated administrators. When an authenticated administrator visits a malicious page crafted by an attacker, the browser automatically submits the forged request with the administrator's session cookies, executing the unauthorized action.

The vulnerability is classified under CWE-352 (Cross-Site Request Forgery), which represents a class of attacks where a malicious website causes a victim's browser to perform an unwanted action on a trusted site where the victim is authenticated.

Root Cause

The root cause of this vulnerability is the failure to implement proper CSRF protection mechanisms in the addUser.php script. The application accepts and processes form submissions without validating that the request originated from a legitimate form within the application. Key missing security controls include:

  • Absence of CSRF tokens in form submissions
  • No verification of HTTP Referer or Origin headers
  • Lack of SameSite cookie attributes to prevent cross-origin request submissions

Attack Vector

The attack vector is network-based and requires no authentication from the attacker. An attacker can exploit this vulnerability by:

  1. Crafting a malicious HTML page containing a hidden form that targets the vulnerable addUser.php endpoint
  2. Tricking an authenticated administrator into visiting the malicious page
  3. The form automatically submits a POST request with attacker-controlled parameters (userName, password, email, role)
  4. The CMS processes the request using the administrator's session, creating a new administrative account
  5. The attacker gains administrative access using the newly created credentials

For technical details on the exploitation technique, refer to the Exploit-DB #45794 and the Vulncheck Advisory on CSRF.

Detection Methods for CVE-2018-25200

Indicators of Compromise

  • Unexpected administrative user accounts appearing in the CMS database
  • User creation events without corresponding legitimate administrator sessions
  • Unusual HTTP POST requests to addUser.php with external Referer headers
  • Multiple user account creations originating from unusual IP addresses or geographic locations

Detection Strategies

  • Monitor web server access logs for POST requests to addUser.php with suspicious Referer headers
  • Implement alerting for new administrative user account creation events
  • Review user account database tables for accounts created without proper audit trails
  • Deploy Web Application Firewall (WAF) rules to detect cross-origin form submissions targeting user management endpoints

Monitoring Recommendations

  • Enable verbose logging for all user management operations in the CMS
  • Configure alerts for administrative account creation outside of normal business hours
  • Implement database change detection to identify unauthorized modifications to user tables
  • Monitor for suspicious patterns such as rapid sequential account creations

How to Mitigate CVE-2018-25200

Immediate Actions Required

  • Audit current administrative user accounts and remove any unauthorized entries
  • Restrict access to the CMS administrative interface using IP whitelisting
  • Consider taking the vulnerable application offline until a proper fix is implemented
  • Implement network-level access controls to limit who can reach the addUser.php endpoint

Patch Information

No official vendor patch has been released for this vulnerability. Organizations using OOP CMS BLOG 1.0 should implement the workarounds below or consider migrating to an actively maintained CMS platform with proper security controls.

Workarounds

  • Implement custom CSRF token validation by modifying the addUser.php script to generate and verify anti-CSRF tokens
  • Add SameSite=Strict attribute to session cookies to prevent cross-origin submission of authenticated requests
  • Implement HTTP Referer and Origin header validation to reject requests from external sources
  • Deploy a Web Application Firewall (WAF) configured to block suspicious cross-site requests
  • Consider replacing the vulnerable CMS with a more secure, actively maintained alternative
bash
# Apache .htaccess configuration to restrict access to addUser.php
<Files "addUser.php">
    # Restrict to specific IP addresses
    Require ip 192.168.1.0/24
    # Alternatively, require authentication
    AuthType Basic
    AuthName "Restricted Access"
    AuthUserFile /etc/apache2/.htpasswd
    Require valid-user
</Files>

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechTomalofficial Php Oop Cms Blog

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/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
  • Exploit-DB #45794

  • Vulncheck Advisory on CSRF
  • Related CVEs
  • CVE-2018-25199: PHP OOP CMS Blog 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