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-2020-37047

CVE-2020-37047: Deep Instinct Agent Privilege Escalation

CVE-2020-37047 is an unquoted service path vulnerability in Deep Instinct Windows Agent 1.2.29.0 that enables local attackers to execute code with LocalSystem privileges. This article covers the technical details.

Published: February 6, 2026

CVE-2020-37047 Overview

Deep Instinct Windows Agent 1.2.29.0 contains an unquoted service path vulnerability in the DeepMgmtService that allows local users to potentially execute code with elevated privileges. Attackers can exploit the unquoted path in C:\Program Files\HP Sure Sense\DeepMgmtService.exe to inject malicious code that would execute with LocalSystem permissions during service startup.

Critical Impact

Local privilege escalation to LocalSystem allows complete system compromise through malicious executable injection in service paths.

Affected Products

  • Deep Instinct Windows Agent 1.2.29.0
  • HP Sure Sense (bundled with Deep Instinct agent)
  • Windows systems running the vulnerable DeepMgmtService

Discovery Timeline

  • 2026-02-01 - CVE CVE-2020-37047 published to NVD
  • 2026-02-03 - Last updated in NVD database

Technical Details for CVE-2020-37047

Vulnerability Analysis

This vulnerability falls under CWE-428 (Unquoted Search Path or Element), a configuration flaw that occurs when Windows service executables are registered without proper quotation marks around file paths containing spaces. When the DeepMgmtService is started, Windows attempts to resolve the unquoted path C:\Program Files\HP Sure Sense\DeepMgmtService.exe by sequentially checking for executables at each space-delimited segment of the path.

The exploitation mechanism relies on Windows' path resolution behavior. When encountering an unquoted path with spaces, Windows will attempt to execute files in the following order: C:\Program.exe, C:\Program Files\HP.exe, and C:\Program Files\HP Sure.exe before finally reaching the intended executable. An attacker with write access to any of these intermediate locations can plant a malicious executable that will be executed with the service's privileges—in this case, LocalSystem.

Root Cause

The root cause is improper service registration in the Windows registry where the ImagePath value for the DeepMgmtService lacks quotation marks around the executable path. The path C:\Program Files\HP Sure Sense\DeepMgmtService.exe contains multiple spaces, which without proper quoting allows Windows to misinterpret path boundaries during service startup.

Attack Vector

This is a local attack vector requiring the attacker to have local access to the target system. The attacker must have write permissions to one of the intermediate directories in the path resolution chain. Common attack scenarios include:

  1. Creating a malicious C:\Program.exe if the root drive allows user writes
  2. Placing HP.exe in the C:\Program Files\ directory if permissions allow
  3. Creating Sure.exe in C:\Program Files\HP\ if that directory exists with weak permissions

When the service restarts (either through system reboot or manual restart), the malicious executable runs with LocalSystem privileges, providing complete system control to the attacker.

The vulnerability can be identified by querying Windows services for unquoted paths. Security researchers can use tools like PowerShell or the Windows Management Instrumentation Command-line (WMIC) to enumerate services with vulnerable configurations. Additional technical details are available in the Exploit-DB #48174 entry and the VulnCheck Advisory on Deep Instinct.

Detection Methods for CVE-2020-37047

Indicators of Compromise

  • Unexpected executables named Program.exe, HP.exe, or Sure.exe in path resolution locations
  • New or modified files in C:\, C:\Program Files\, or C:\Program Files\HP\ directories
  • Unusual process execution chains originating from the DeepMgmtService startup
  • Registry modifications to the DeepMgmtService ImagePath value

Detection Strategies

  • Query all Windows services for unquoted paths using WMIC: wmic service get name,displayname,pathname,startmode | findstr /i "auto" | findstr /i /v "C:\Windows\\" | findstr /i /v """
  • Monitor file creation events in directories along the vulnerable path resolution chain
  • Implement file integrity monitoring for critical system directories
  • Use endpoint detection tools to alert on suspicious executable creation in path hijacking locations

Monitoring Recommendations

  • Enable Windows Security Event logging for process creation (Event ID 4688) with command-line auditing
  • Configure Sysmon to track file creation events in C:\, C:\Program Files\, and subdirectories
  • Alert on service-related events (Event IDs 7045, 7040) indicating service configuration changes
  • Monitor for privilege escalation patterns where low-privilege processes spawn high-privilege children

How to Mitigate CVE-2020-37047

Immediate Actions Required

  • Audit all installed services for unquoted path vulnerabilities using the detection query above
  • Manually correct the registry entry by adding quotes around the DeepMgmtService ImagePath value
  • Restrict write permissions on directories in the vulnerable path chain (C:\, C:\Program Files\, C:\Program Files\HP\)
  • Update to a patched version of Deep Instinct Windows Agent when available from the vendor

Patch Information

Organizations should check for updated versions of the Deep Instinct Windows Agent that address this unquoted service path issue. Contact Deep Instinct support or visit the Deep Instinct Homepage for the latest security updates and patched agent versions. Until a patch is applied, manual registry remediation is recommended.

Workarounds

  • Manually quote the service path in the registry: Navigate to HKLM\SYSTEM\CurrentControlSet\Services\DeepMgmtService and modify the ImagePath value to include quotes
  • Implement strict NTFS permissions on intermediate directories to prevent unauthorized file creation
  • Use application whitelisting solutions to block execution of unauthorized executables in vulnerable path locations
  • Deploy SentinelOne endpoint protection which can detect and prevent privilege escalation attempts through path hijacking
bash
# Configuration example - Fix unquoted service path via registry
reg add "HKLM\SYSTEM\CurrentControlSet\Services\DeepMgmtService" /v ImagePath /t REG_EXPAND_SZ /d "\"C:\Program Files\HP Sure Sense\DeepMgmtService.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/TechDeep Instinct

  • SeverityHIGH

  • CVSS Score8.5

  • EPSS Probability0.01%

  • 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
  • Deep Instinct Homepage

  • Exploit-DB #48174

  • VulnCheck Advisory on Deep Instinct
  • Related CVEs
  • CVE-2020-36934: Deep Instinct Agent Privilege Escalation
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