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-2015-20117

CVE-2015-20117: RealtyScript CSRF Vulnerability

CVE-2015-20117 is a CSRF vulnerability in Next Click Ventures RealtyScript 4.0.2 that enables attackers to create unauthorized accounts and escalate privileges. This article covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2015-20117 Overview

Next Click Ventures RealtyScript 4.0.2 contains a cross-site request forgery (CSRF) vulnerability that allows unauthenticated attackers to create unauthorized user accounts and administrative users by crafting malicious forms. Attackers can submit hidden form data to /admin/addusers.php and /admin/editadmins.php endpoints to register new users with arbitrary credentials and escalate privileges to SUPERUSER level.

Critical Impact

Attackers can exploit this CSRF vulnerability to create administrative accounts without authentication, potentially gaining full control over the RealtyScript application and its underlying data.

Affected Products

  • Next Click Ventures RealtyScript 4.0.2
  • Nextclickventures Realtyscript (all versions prior to patched releases)

Discovery Timeline

  • 2026-03-16 - CVE CVE-2015-20117 published to NVD
  • 2026-03-19 - Last updated in NVD database

Technical Details for CVE-2015-20117

Vulnerability Analysis

This vulnerability is classified as CWE-352 (Cross-Site Request Forgery), a web application security flaw where the application fails to verify that authenticated requests originate from the legitimate user. In RealtyScript 4.0.2, the administrative endpoints responsible for user and administrator management do not implement proper anti-CSRF tokens or request validation mechanisms.

The vulnerable endpoints /admin/addusers.php and /admin/editadmins.php accept form submissions without verifying the request's origin or including any challenge tokens. This allows an attacker to craft a malicious webpage containing hidden form fields that, when visited by an authenticated administrator, automatically submits requests to create new user accounts or modify existing administrative privileges.

Root Cause

The root cause of this vulnerability is the absence of CSRF protection mechanisms in the administrative user management functionality. The application does not implement:

  • Anti-CSRF tokens in form submissions
  • Referrer header validation
  • Same-origin policy enforcement for state-changing operations
  • Request authentication beyond session cookies

Attack Vector

The attack is network-based and requires user interaction where an authenticated administrator must visit a malicious webpage or click a crafted link. The attacker constructs an HTML page containing hidden forms that target the vulnerable endpoints. When the victim administrator loads this page, JavaScript automatically submits the form, creating unauthorized accounts with the administrator's existing session authentication.

The attack flow involves:

  1. Attacker creates a malicious webpage with hidden form fields targeting /admin/addusers.php or /admin/editadmins.php
  2. The form contains parameters for creating a new user with attacker-controlled credentials
  3. Victim administrator visits the malicious page while authenticated to RealtyScript
  4. The browser automatically submits the form using the administrator's session
  5. A new user account or administrative user is created without the administrator's knowledge

For detailed technical exploitation information, refer to the Zero Science Vulnerability ZSL-2015-5269 advisory and Exploit-DB #38496.

Detection Methods for CVE-2015-20117

Indicators of Compromise

  • Unexpected user accounts appearing in the RealtyScript administrative panel
  • New administrative users created without legitimate administrator action
  • Web server logs showing POST requests to /admin/addusers.php or /admin/editadmins.php with unusual referrer headers
  • Multiple account creation events within a short timeframe from different source IPs

Detection Strategies

  • Monitor web server access logs for POST requests to /admin/addusers.php and /admin/editadmins.php endpoints with external referrer headers
  • Implement alerting for new user account creation events, especially those with administrative privileges
  • Review audit logs for user creation timestamps that don't correlate with expected administrative activity
  • Deploy web application firewalls (WAF) with CSRF detection capabilities to identify suspicious cross-origin requests

Monitoring Recommendations

  • Enable detailed access logging on the web server to capture referrer headers and request origins
  • Configure alerts for administrative account modifications or creations outside of business hours
  • Implement session monitoring to detect simultaneous administrative actions from different geographic locations
  • Regularly audit user account lists and administrative privilege assignments for unauthorized entries

How to Mitigate CVE-2015-20117

Immediate Actions Required

  • Restrict access to administrative endpoints (/admin/) to trusted IP addresses only using firewall rules or web server configuration
  • Implement network-level access controls to limit who can reach the RealtyScript administrative interface
  • Review and audit all existing user accounts and administrative users for unauthorized entries
  • Consider taking the administrative interface offline until proper CSRF protections can be implemented

Patch Information

No vendor patch information is currently available in the CVE data. Organizations should contact Next Click Ventures directly for updated software versions or consider implementing custom CSRF protection mechanisms. For additional advisory details, see the VulnCheck Security Advisory.

Workarounds

  • Implement a web application firewall (WAF) rule to block requests to administrative endpoints with external referrer headers
  • Add custom CSRF token validation to the affected PHP scripts if source code modification is possible
  • Require re-authentication or CAPTCHA verification for sensitive administrative actions
  • Use browser extensions or configurations that block cross-origin form submissions while performing administrative tasks

Example Apache configuration to restrict administrative access by IP:

apache
# Restrict admin directory access to trusted IPs
<Directory "/var/www/html/admin">
    Order deny,allow
    Deny from all
    Allow from 192.168.1.0/24
    Allow from 10.0.0.0/8
</Directory>

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechNextclickventures Realityscript

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.02%

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

  • VulnCheck Security Advisory

  • Zero Science Vulnerability ZSL-2015-5269
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs 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