Join us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-37021

CVE-2020-37021: 10-Strike Bandwidth Monitor Escalation

CVE-2020-37021 is an unquoted service path vulnerability in 10-Strike Bandwidth Monitor 3.9 that enables local attackers to escalate privileges to SYSTEM. This article covers technical details, affected versions, and mitigation.

Published: January 29, 2026

CVE-2020-37021 Overview

CVE-2020-37021 is an unquoted service path vulnerability affecting 10-Strike Bandwidth Monitor version 3.9. This flaw exists in multiple Windows services installed by the application, allowing local attackers with limited privileges to escalate their access to SYSTEM level. The vulnerability arises from improper quoting of file paths in the service configuration, enabling attackers to place malicious executables in strategic locations that get executed during service startup.

Critical Impact

Local attackers can achieve SYSTEM-level privilege escalation by exploiting unquoted service paths, potentially gaining complete control over the affected system.

Affected Products

  • 10-Strike Bandwidth Monitor version 3.9
  • Windows services installed by 10-Strike Bandwidth Monitor (svcStrikeBandMonitor)

Discovery Timeline

  • 2026-01-29 - CVE CVE-2020-37021 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2020-37021

Vulnerability Analysis

This vulnerability is classified under CWE-428 (Unquoted Search Path or Element). When Windows services are configured with executable paths that contain spaces but are not enclosed in quotation marks, the operating system attempts to locate the executable by parsing the path at each space character. This creates an opportunity for attackers to place a malicious executable in a location that matches an earlier parsing attempt.

For example, if a service path is configured as C:\Program Files\10-Strike Bandwidth Monitor\service.exe, Windows will sequentially attempt to execute C:\Program.exe, then C:\Program Files\10-Strike.exe, before finally reaching the intended executable. An attacker who can write to these locations can achieve code execution with the privileges of the service.

Root Cause

The root cause stems from the service registration process in 10-Strike Bandwidth Monitor 3.9, where the ImagePath registry value for the affected services is stored without proper quotation marks around the file path. This is a common configuration error in Windows applications that install services with paths containing spaces.

Attack Vector

This is a local attack vector requiring the attacker to have authenticated access to the system with write permissions to one of the path prefix locations. The attack flow involves:

  1. Identifying the vulnerable unquoted service path in the Windows registry
  2. Determining which path prefix locations are writable by the current user
  3. Placing a malicious executable (such as Program.exe or 10-Strike.exe) in a writable location
  4. Waiting for or triggering a service restart, at which point the malicious executable runs with SYSTEM privileges

The vulnerability can be verified by examining service configurations using tools like Windows Service Manager or by querying the registry. Detailed exploit information is available in the Exploit-DB #48591 entry.

Detection Methods for CVE-2020-37021

Indicators of Compromise

  • Presence of unexpected executables in C:\ root directory or C:\Program Files\ with names like Program.exe or 10-Strike.exe
  • Unusual child processes spawned by the 10-Strike Bandwidth Monitor service
  • Service crash logs followed by suspicious process execution
  • Registry modifications to service ImagePath values

Detection Strategies

  • Use Windows Management Instrumentation (WMI) queries to identify services with unquoted paths containing spaces
  • Monitor for file creation events in path prefix locations (C:\, C:\Program Files\)
  • Implement application whitelisting to prevent unauthorized executables from running
  • Deploy endpoint detection and response (EDR) solutions like SentinelOne to detect privilege escalation attempts

Monitoring Recommendations

  • Enable Windows Security Event logging for service installation and modification events (Event IDs 4697, 7045)
  • Configure file integrity monitoring on directories commonly targeted by this attack technique
  • Implement real-time alerting for any new executable files created in the root drive or program files directories
  • Use SentinelOne's behavioral AI to detect unusual service-related process chains indicative of privilege escalation

How to Mitigate CVE-2020-37021

Immediate Actions Required

  • Audit all Windows services for unquoted paths using PowerShell or third-party tools
  • Manually correct the service path by adding quotation marks around the ImagePath value in the registry
  • Restrict write permissions on root directories and C:\Program Files\ to administrators only
  • Consider uninstalling 10-Strike Bandwidth Monitor 3.9 if not critical to operations

Patch Information

No official patch information is available from the vendor at this time. Organizations should consult the 10-Strike Security Tools website for any updates or newer versions that may address this vulnerability. The VulnCheck Advisory on Bandwidth Monitor provides additional technical details and remediation guidance.

Workarounds

  • Manually fix the unquoted service path by modifying the registry ImagePath value to include quotation marks
  • Implement strict file system ACLs to prevent non-administrators from creating files in vulnerable path locations
  • Deploy application control policies to block execution of unauthorized binaries
  • Use Windows Defender Application Control (WDAC) or AppLocker to whitelist approved executables
bash
# PowerShell command to identify services with unquoted paths
Get-WmiObject -Class Win32_Service | Where-Object { 
    $_.PathName -notmatch '^"' -and $_.PathName -match '\s' 
} | Select-Object Name, PathName, StartMode

# Registry fix command (run as Administrator)
# Replace the unquoted path with a properly quoted version
reg add "HKLM\SYSTEM\CurrentControlSet\Services\svcStrikeBandMonitor" /v ImagePath /t REG_EXPAND_SZ /d "\"C:\Program Files\10-Strike Bandwidth Monitor\service.exe\"" /f

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/Tech10 Strike Bandwidth Monitor

  • SeverityHIGH

  • CVSS Score8.5

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/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
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-428
  • Technical References
  • 10-Strike Security Tools

  • Exploit-DB #48591

  • VulnCheck Advisory on Bandwidth Monitor
  • Related CVEs
  • CVE-2020-37043: 10-Strike Bandwidth Monitor RCE Flaw
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
  • English
  • 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