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
    • 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-2020-37106

CVE-2020-37106: Business Live Chat Software CSRF Flaw

CVE-2020-37106 is a cross-site request forgery vulnerability in Business Live Chat Software 1.0 that enables attackers to escalate privileges without authentication. This article covers technical details, impact, and mitigation.

Published: February 13, 2026

CVE-2020-37106 Overview

Business Live Chat Software 1.0 contains a cross-site request forgery (CSRF) vulnerability that allows attackers to change user account roles without authentication. Attackers can craft a malicious HTML form to modify user privileges by submitting a POST request to the user creation endpoint with administrative access parameters. This vulnerability enables unauthorized privilege escalation through social engineering tactics.

Critical Impact

Attackers can escalate privileges and create administrative accounts without proper authorization by tricking authenticated users into visiting a malicious webpage.

Affected Products

  • Business Live Chat Software 1.0
  • BDTask Live Chat Software

Discovery Timeline

  • 2026-02-07 - CVE CVE-2020-37106 published to NVD
  • 2026-02-09 - Last updated in NVD database

Technical Details for CVE-2020-37106

Vulnerability Analysis

This vulnerability is classified as Cross-Site Request Forgery (CWE-352), a web application vulnerability that allows attackers to induce authenticated users to perform unintended actions. The Business Live Chat Software fails to implement proper CSRF protection tokens on sensitive administrative endpoints, specifically those related to user management and role assignment.

The attack requires user interaction, where an authenticated administrator must be tricked into visiting a malicious page containing a crafted form. Once triggered, the form automatically submits a request to the vulnerable endpoint, leveraging the victim's authenticated session to perform unauthorized actions such as creating new admin accounts or modifying existing user privileges.

Root Cause

The root cause of this vulnerability is the absence of CSRF token validation on the user creation and role modification endpoints. The application does not verify that requests originate from legitimate user interactions within the application's interface. Without anti-CSRF mechanisms such as synchronizer tokens, same-site cookie attributes, or origin header validation, the application cannot distinguish between legitimate requests and forged requests from malicious third-party sites.

Attack Vector

The attack vector is network-based and requires no prior authentication from the attacker's perspective. The attacker crafts a malicious HTML page containing a hidden form that targets the vulnerable user management endpoint. When an authenticated administrator visits this malicious page—whether through a phishing link, compromised website, or embedded iframe—the form automatically submits using JavaScript, sending a POST request to add a new administrative user or modify existing user roles.

The attack leverages the victim's active session cookies, which are automatically included by the browser in the forged request. Since the server lacks CSRF protection, it processes the request as legitimate, resulting in unauthorized privilege modification. For technical exploitation details, refer to the Exploit-DB #48141 advisory.

Detection Methods for CVE-2020-37106

Indicators of Compromise

  • Unexpected administrative user accounts appearing in the system
  • User role modifications without corresponding audit trail from legitimate admin actions
  • Access logs showing POST requests to user management endpoints with unusual referrer headers or missing origin headers

Detection Strategies

  • Monitor web server access logs for POST requests to user creation or role modification endpoints with external or suspicious referrer headers
  • Implement alerting on new administrative account creation outside of established change management processes
  • Review authentication logs for session activity patterns that indicate CSRF exploitation, such as rapid privilege changes without corresponding UI interaction

Monitoring Recommendations

  • Enable detailed logging of all user management operations including source IP, session ID, and request headers
  • Configure web application firewall (WAF) rules to detect and block requests lacking proper CSRF tokens
  • Implement real-time alerting for any administrative privilege escalation events

How to Mitigate CVE-2020-37106

Immediate Actions Required

  • Review all existing user accounts and roles for unauthorized modifications
  • Implement network segmentation to restrict access to administrative endpoints from trusted networks only
  • Consider temporarily disabling external access to the administrative interface until patches are applied
  • Audit recent user creation and role modification activities for signs of exploitation

Patch Information

No vendor patch information is currently available for this vulnerability. Organizations should contact BDTask directly for security updates. Additional vulnerability details can be found in the VulnCheck CSRF Advisory and vendor product page at BDTask Live Chat Software.

Workarounds

  • Implement a web application firewall (WAF) with CSRF protection rules to validate request origins and block suspicious cross-origin requests
  • Configure SameSite=Strict or SameSite=Lax attributes on session cookies to prevent them from being sent with cross-origin requests
  • Add custom middleware or reverse proxy rules to validate Origin and Referer headers on state-changing requests
  • Restrict administrative interface access to specific IP ranges or require VPN connectivity
bash
# Example Apache configuration to restrict admin access by IP
<Location "/admin">
    Order deny,allow
    Deny from all
    Allow from 10.0.0.0/8
    Allow from 192.168.1.0/24
</Location>

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechBusiness Live Chat Software

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N/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-352
  • Technical References
  • BDTask Live Chat Software

  • Exploit-DB #48141

  • VulnCheck CSRF Advisory
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox RCE 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