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-2026-31845

CVE-2026-31845: Rukovoditel CRM Reflected XSS Vulnerability

CVE-2026-31845 is a reflected cross-site scripting vulnerability in Rukovoditel CRM that allows attackers to inject malicious scripts via the Zadarma API endpoint. This post covers technical details, affected versions, and fixes.

Published: April 17, 2026

CVE-2026-31845 Overview

A reflected cross-site scripting (XSS) vulnerability exists in Rukovoditel CRM version 3.6.4 and earlier in the Zadarma telephony API endpoint (/api/tel/zadarma.php). The application directly reflects user-supplied input from the zd_echo GET parameter into the HTTP response without proper sanitization, output encoding, or content-type restrictions.

An unauthenticated attacker can exploit this issue by crafting a malicious URL containing JavaScript payloads. When a victim visits the link, the payload executes in the context of the application within the victim's browser, potentially leading to session hijacking, credential theft, phishing, or account takeover.

Critical Impact

This reflected XSS vulnerability allows unauthenticated attackers to execute arbitrary JavaScript in victims' browsers, potentially enabling session hijacking, credential theft, and complete account takeover of Rukovoditel CRM users.

Affected Products

  • Rukovoditel CRM version 3.6.4 and earlier
  • Zadarma telephony API endpoint (/api/tel/zadarma.php)
  • All installations with the vulnerable telephony integration enabled

Discovery Timeline

  • April 11, 2026 - CVE-2026-31845 published to NVD
  • April 13, 2026 - Last updated in NVD database

Technical Details for CVE-2026-31845

Vulnerability Analysis

This reflected XSS vulnerability stems from insecure handling of user input in the Zadarma telephony API integration. The vulnerable endpoint directly outputs user-controlled data without any form of input validation, output encoding, or Content-Type header restrictions.

The vulnerable code pattern is:

php
if (isset($_GET['zd_echo'])) exit($_GET['zd_echo']);

This code simply echoes whatever value is passed via the zd_echo GET parameter directly into the HTTP response body. Because no sanitization or encoding is applied, and no restrictive Content-Type header is set, the browser interprets any HTML or JavaScript content as executable code.

Root Cause

The root cause of this vulnerability is a complete absence of output encoding and input validation in the zadarma.php API endpoint (CWE-79: Improper Neutralization of Input During Web Page Generation). The code uses exit() to immediately output the raw parameter value, bypassing any framework-level security mechanisms that might otherwise sanitize output. This design pattern directly violates secure coding principles for web applications.

Attack Vector

The vulnerability is exploitable via the network without authentication. An attacker crafts a malicious URL containing JavaScript code in the zd_echo parameter and distributes this URL through phishing emails, social engineering, or malicious websites. When a victim clicks the link while authenticated to Rukovoditel CRM, the JavaScript executes in their browser session with full access to the application context.

Exploitation requires user interaction—specifically, the victim must click the malicious link. Once clicked, the attacker's script can steal session cookies, capture credentials entered into the page, modify displayed content for phishing purposes, or perform actions on behalf of the victim within the CRM application.

Detection Methods for CVE-2026-31845

Indicators of Compromise

  • HTTP requests to /api/tel/zadarma.php containing the zd_echo parameter with HTML/JavaScript content
  • Unusual URL patterns in web server logs containing encoded script tags or JavaScript event handlers
  • Reports from users of unexpected browser behavior or pop-ups when accessing Rukovoditel CRM links
  • Session anomalies where user actions originate from unexpected IP addresses following link clicks

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block requests containing script tags or JavaScript event handlers in the zd_echo parameter
  • Configure SIEM alerts for HTTP requests matching patterns like /api/tel/zadarma.php?zd_echo=<script or similar injection attempts
  • Monitor Content Security Policy (CSP) violation reports if implemented, as they may indicate XSS exploitation attempts
  • Review web server access logs for abnormal request patterns targeting the vulnerable endpoint

Monitoring Recommendations

  • Enable detailed logging for all requests to /api/tel/zadarma.php and related telephony API endpoints
  • Configure real-time alerting for requests containing potential XSS payloads in query string parameters
  • Monitor for unusual authentication patterns that may indicate session hijacking following XSS exploitation
  • Implement network-level monitoring for exfiltration attempts to external domains from user sessions

How to Mitigate CVE-2026-31845

Immediate Actions Required

  • Upgrade Rukovoditel CRM to version 3.7 or later, which includes proper input validation and output encoding
  • If immediate upgrade is not possible, restrict or disable access to the /api/tel/zadarma.php endpoint
  • Implement a Web Application Firewall (WAF) to filter malicious requests targeting the vulnerable parameter
  • Review application logs for evidence of prior exploitation attempts

Patch Information

The vulnerability is fixed in Rukovoditel CRM version 3.7, which introduces proper input validation and output encoding to prevent script injection. Organizations should upgrade to this version or later to remediate the vulnerability. Additional information is available on the Rukovoditel Forum Discussion.

Workarounds

  • Block access to /api/tel/zadarma.php at the web server or reverse proxy level if the Zadarma telephony integration is not required
  • Implement a WAF rule to sanitize or reject requests containing script-related content in the zd_echo parameter
  • Configure Content Security Policy (CSP) headers to restrict inline script execution and mitigate XSS impact
  • Apply network segmentation to limit exposure of the Rukovoditel CRM application to trusted networks only
bash
# Example: Apache .htaccess rule to block access to vulnerable endpoint
<Location "/api/tel/zadarma.php">
    Require all denied
</Location>

# Example: nginx location block to restrict endpoint access
location /api/tel/zadarma.php {
    deny all;
    return 403;
}

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechRukovoditel Crm

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:H/VI:H/VA:N/SC:H/SI:H/SA:H/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
  • IntegrityHigh
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • Rukovoditel Forum Discussion
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43331: Linux Kernel DOS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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