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
    • 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-25168

CVE-2018-25168: Precurio Intranet Portal CSRF Vulnerability

CVE-2018-25168 is a cross-site request forgery flaw in Precurio Intranet Portal 2.0 allowing attackers to create admin accounts. This post covers the technical details, affected versions, impact, and mitigation.

Published: March 13, 2026

CVE-2018-25168 Overview

CVE-2018-25168 is a Cross-Site Request Forgery (CSRF) vulnerability affecting Precurio Intranet Portal 2.0. This vulnerability allows unauthenticated attackers to create administrative user accounts by submitting crafted POST requests. Attackers can forge requests to the /public/admin/user/submitnew endpoint with user creation parameters to add new admin accounts without requiring CSRF tokens or user interaction.

Critical Impact

Unauthenticated attackers can create administrative accounts, leading to complete compromise of the intranet portal and potential unauthorized access to sensitive corporate data.

Affected Products

  • Precurio Intranet Portal 2.0

Discovery Timeline

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

Technical Details for CVE-2018-25168

Vulnerability Analysis

This CSRF vulnerability exists due to the absence of anti-CSRF token validation on the administrative user creation endpoint. The /public/admin/user/submitnew endpoint accepts POST requests for creating new user accounts but fails to verify that requests originate from legitimate authenticated sessions within the application.

When an authenticated administrator visits a malicious webpage or clicks a crafted link, the attacker-controlled page can submit a forged POST request to the vulnerable endpoint. Because browsers automatically include session cookies with cross-origin requests, and the application lacks CSRF protection mechanisms, the server processes the malicious request as if it were a legitimate action by the administrator.

The vulnerability enables complete administrative account creation, allowing attackers to establish persistent backdoor access to the intranet portal.

Root Cause

The root cause of this vulnerability is the lack of CSRF token implementation on state-changing endpoints in Precurio Intranet Portal 2.0. The application does not generate or validate anti-CSRF tokens for the user creation functionality, allowing attackers to craft malicious requests that bypass same-origin policy protections when executed in the context of an authenticated user's browser session.

Attack Vector

The attack vector is network-based, requiring an attacker to lure an authenticated administrator to a malicious webpage. The attack flow involves:

  1. Attacker crafts a malicious HTML page containing a hidden form targeting the /public/admin/user/submitnew endpoint
  2. The form contains parameters specifying a new administrative user's credentials
  3. When an authenticated Precurio administrator visits the attacker's page, JavaScript automatically submits the form
  4. The victim's browser sends the forged request with valid session cookies
  5. The Precurio server creates the new admin account, granting the attacker persistent access

The vulnerability is documented in publicly available references. For technical details and proof-of-concept information, see the Exploit-DB #45860 entry and the VulnCheck Advisory.

Detection Methods for CVE-2018-25168

Indicators of Compromise

  • Unexpected administrative user accounts appearing in the Precurio user management console
  • User creation events in application logs originating from unusual referrer headers or lacking expected referrer values
  • Multiple admin account creations in a short timeframe without corresponding legitimate administrative activity

Detection Strategies

  • Monitor HTTP access logs for POST requests to /public/admin/user/submitnew with external or suspicious referrer headers
  • Implement web application firewall (WAF) rules to detect and block requests to sensitive endpoints lacking proper origin validation
  • Audit application logs for user creation events and correlate with administrator login sessions

Monitoring Recommendations

  • Enable detailed logging for all administrative actions in Precurio Intranet Portal
  • Configure alerts for new administrative account creation events
  • Regularly review and audit the list of administrative users for unauthorized accounts

How to Mitigate CVE-2018-25168

Immediate Actions Required

  • Restrict network access to Precurio Intranet Portal administrative interfaces to trusted IP ranges
  • Implement a web application firewall (WAF) with CSRF protection rules in front of the portal
  • Audit existing administrative accounts and remove any unauthorized entries
  • Train administrators to be cautious of clicking links while logged into the portal

Patch Information

No vendor patch information is currently available in the CVE data. Organizations should contact the Precurio vendor directly for security updates or consider alternative intranet portal solutions. For additional context, refer to the VulnCheck Advisory.

Workarounds

  • Deploy a reverse proxy or WAF to add CSRF token validation at the network layer
  • Implement custom security middleware to validate Origin and Referer headers for state-changing requests
  • Use browser isolation for administrative tasks to limit CSRF exposure
  • Consider deploying additional authentication factors for administrative actions
bash
# Example WAF rule to block suspicious requests (ModSecurity)
# Block POST to user creation endpoint without valid Referer
SecRule REQUEST_METHOD "POST" "id:100001,phase:2,chain,deny,status:403,msg:'CSRF Protection - Suspicious Admin Request'"
SecRule REQUEST_URI "/public/admin/user/submitnew" "chain"
SecRule REQUEST_HEADERS:Referer "!@contains /admin/"

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechPrecurio

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/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
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-434
  • Technical References
  • Exploit-DB #45860

  • VulnCheck Advisory
  • Related CVEs
  • CVE-2026-32989: Precurio Intranet Portal CSRF Vulnerability
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