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

CVE-2018-25190: Easyndexer CSRF Vulnerability

CVE-2018-25190 is a CSRF vulnerability in Easyndexer 1.0 allowing attackers to create admin accounts via forged requests. This article covers the technical details, affected versions, security impact, and mitigation.

Published: March 13, 2026

CVE-2018-25190 Overview

CVE-2018-25190 is a Cross-Site Request Forgery (CSRF) vulnerability affecting Easyndexer 1.0. The vulnerability allows unauthenticated attackers to create administrative accounts by submitting forged POST requests. Attackers can craft malicious web pages that submit POST requests to createuser.php with parameters including username, password, name, surname, and privileges set to 1 for administrator access.

Critical Impact

Unauthenticated attackers can create administrative accounts through CSRF attacks, potentially leading to complete application takeover and unauthorized access to sensitive data.

Affected Products

  • Easyndexer 1.0

Discovery Timeline

  • 2026-03-06 - CVE CVE-2018-25190 published to NVD
  • 2026-03-09 - Last updated in NVD database

Technical Details for CVE-2018-25190

Vulnerability Analysis

This vulnerability is classified as CWE-352 (Cross-Site Request Forgery). The root cause lies in the lack of CSRF token validation in the createuser.php endpoint of Easyndexer 1.0. When a legitimate administrator browses a malicious webpage while authenticated to the Easyndexer application, the attacker-controlled page can silently submit a POST request to the createuser.php endpoint. Because the application does not verify that the request originated from a legitimate form submission, the request is processed as if it came from the authenticated administrator.

The attack is network-based and requires no authentication on the attacker's part. However, social engineering is necessary to trick an authenticated administrator into visiting the malicious page. Once successful, the attacker gains administrator-level access to the Easyndexer application.

Root Cause

The createuser.php endpoint in Easyndexer 1.0 does not implement anti-CSRF protections such as CSRF tokens, same-site cookie attributes, or request origin verification. This allows cross-origin requests from attacker-controlled websites to be accepted and processed by the application as legitimate administrator actions.

Attack Vector

The attack requires an attacker to craft a malicious HTML page containing a form that auto-submits a POST request to the target Easyndexer instance's createuser.php endpoint. The attacker must then convince an authenticated administrator to visit this malicious page. When the administrator's browser loads the page, JavaScript automatically submits the form, creating a new administrative account with attacker-controlled credentials.

The vulnerability mechanism involves forging POST requests to createuser.php with the following parameters: username, password, name, surname, and privileges=1 for administrator access. Technical details are available in the Exploit-DB #45815 entry and the VulnCheck Advisory.

Detection Methods for CVE-2018-25190

Indicators of Compromise

  • Unexpected administrative user accounts appearing in the Easyndexer user database
  • Access logs showing POST requests to createuser.php with external or suspicious referrer headers
  • Multiple user creation events occurring in rapid succession or outside normal business hours

Detection Strategies

  • Monitor web server access logs for POST requests to createuser.php with missing or external Referer headers
  • Implement alerts for new administrator account creation events in Easyndexer
  • Audit existing user accounts regularly to identify unauthorized administrative accounts

Monitoring Recommendations

  • Enable detailed access logging on web servers hosting Easyndexer
  • Configure SIEM alerts for user creation events in the application
  • Monitor for anomalous referrer patterns in requests to sensitive endpoints

How to Mitigate CVE-2018-25190

Immediate Actions Required

  • Restrict access to createuser.php to trusted internal networks only
  • Implement IP-based access controls for administrative functions
  • Audit existing user accounts and remove any unauthorized administrative accounts
  • Consider taking Easyndexer offline until proper CSRF protections can be implemented

Patch Information

No vendor patch information is available in the CVE data. Organizations using Easyndexer 1.0 should consider implementing compensating controls or migrating to alternative software with proper CSRF protections. For additional technical details, refer to the VulnCheck Advisory.

Workarounds

  • Implement a Web Application Firewall (WAF) rule to validate Referer headers on requests to createuser.php
  • Add SameSite cookie attributes to session cookies to prevent cross-site request forgery
  • Implement custom CSRF token validation at the web server or reverse proxy level if source code modification is not possible
  • Restrict administrative functions to specific IP addresses or VPN connections
bash
# Example: Apache .htaccess to restrict createuser.php access
<Files "createuser.php">
    Require ip 10.0.0.0/8
    Require ip 192.168.0.0/16
</Files>

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechEasyndexer

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.03%

  • 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 #45815

  • VulnCheck Advisory: Easyndexer CSRF
  • Related CVEs
  • CVE-2018-25178: Easyndexer Path Traversal 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