Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2020-37060

CVE-2020-37060: Atomic Alarm Clock Privilege Escalation

CVE-2020-37060 is a local privilege escalation flaw in Atomic Alarm Clock 6.3 that enables attackers to execute code with SYSTEM privileges. This article covers technical details, affected versions, and mitigation.

Published: February 6, 2026

CVE-2020-37060 Overview

CVE-2020-37060 is a local privilege escalation vulnerability affecting Atomic Alarm Clock version 6.3. The vulnerability stems from an unquoted service path configuration (CWE-428) that allows local attackers with limited user privileges to execute arbitrary code with SYSTEM-level privileges. By placing a malicious executable named Program.exe in an appropriate directory, attackers can achieve persistent system-level access whenever the vulnerable service starts.

Critical Impact

Local attackers can escalate privileges to SYSTEM level, enabling complete system compromise, persistent backdoor installation, and lateral movement within enterprise environments.

Affected Products

  • Atomic Alarm Clock 6.3

Discovery Timeline

  • 2026-01-30 - CVE CVE-2020-37060 published to NVD
  • 2026-02-04 - Last updated in NVD database

Technical Details for CVE-2020-37060

Vulnerability Analysis

The vulnerability exists due to improper handling of the Windows service executable path in Atomic Alarm Clock 6.3. When a Windows service path contains spaces and is not enclosed in quotation marks, Windows attempts to resolve the path by parsing it incrementally at each space. This behavior can be exploited by an attacker who places a malicious executable at one of the parsed path locations.

The unquoted service path vulnerability (CWE-428) is a well-documented Windows privilege escalation technique that has been successfully exploited in numerous real-world attacks. When the service runs under the SYSTEM account, any code executed through this path hijacking inherits those elevated privileges.

Root Cause

The root cause is the failure to properly quote the service binary path during installation. When the service path contains spaces (such as C:\Program Files\Atomic Alarm Clock\atomicalarmclock.exe), Windows interprets this path ambiguously without proper quoting. The system attempts to execute:

  1. C:\Program.exe
  2. C:\Program Files\Atomic.exe
  3. And so on, until finding a valid executable

If an attacker can write to any of these intermediate paths (commonly C:\Program.exe if the root drive has weak permissions), their malicious code will execute with the service's elevated privileges.

Attack Vector

This is a local attack vector requiring the attacker to have authenticated access to the target system. The attack requires the ability to write files to directories in the service path resolution chain. Upon service restart or system reboot, the malicious executable is loaded with SYSTEM privileges, providing the attacker with complete control over the compromised host.

The exploitation technique involves placing a malicious executable (typically named Program.exe) in the C:\ root directory or another path segment location. When the vulnerable service starts, Windows locates and executes this file with elevated privileges instead of the legitimate service binary.

Detection Methods for CVE-2020-37060

Indicators of Compromise

  • Presence of unexpected executables named Program.exe or Atomic.exe in the C:\ root directory or C:\Program Files\ directory
  • Unusual process execution chains where services.exe spawns suspicious child processes
  • Registry modifications to service ImagePath values showing unquoted paths containing spaces
  • Unexpected files with recent modification timestamps in system root directories

Detection Strategies

  • Query Windows services using wmic service get name,pathname or PowerShell Get-WmiObject to identify unquoted service paths containing spaces
  • Monitor file creation events in C:\ and C:\Program Files\ for executables matching path segment names
  • Implement endpoint detection rules to alert on SYSTEM-level process spawning from non-standard locations
  • Use SentinelOne's behavioral AI to detect privilege escalation patterns associated with service path hijacking

Monitoring Recommendations

  • Enable auditing for file creation events in directories commonly targeted by unquoted path attacks
  • Configure alerts for new service registrations and modifications to existing service configurations
  • Monitor process creation events for SYSTEM-level processes originating from unexpected executable paths
  • Leverage SentinelOne Singularity XDR to correlate service-related events across endpoints for enterprise-wide visibility

How to Mitigate CVE-2020-37060

Immediate Actions Required

  • Audit all installed services for unquoted paths using wmic service get name,pathname | findstr /i "Program Files"
  • Remove any suspicious executables from C:\ root and intermediate path directories
  • Restrict write permissions on the system root drive and C:\Program Files\ directory
  • Consider uninstalling Atomic Alarm Clock 6.3 until a patched version is available

Patch Information

No official vendor patch has been confirmed at this time. The vendor website is available at Drive Software Homepage. Users should check for updated versions that address this vulnerability. Additional technical details are available in the VulnCheck Advisory for Atomic Alarm Clock and Exploit-DB #48352.

Workarounds

  • Manually correct the service path by adding quotation marks around the full executable path in the Windows Registry
  • Remove write permissions for non-administrative users on potential hijack locations (C:\, C:\Program Files\)
  • Configure Windows Defender Application Control (WDAC) or AppLocker policies to block execution of unsigned binaries from system root directories
  • Disable or remove the vulnerable service if the application is not required for business operations
bash
# Manual service path remediation via Registry
# Locate: HKLM\SYSTEM\CurrentControlSet\Services\AtomicAlarmClock
# Modify ImagePath from:
#   C:\Program Files\Atomic Alarm Clock\atomicalarmclock.exe
# To:
#   "C:\Program Files\Atomic Alarm Clock\atomicalarmclock.exe"

# PowerShell command to identify vulnerable services
Get-WmiObject Win32_Service | Where-Object {
    $_.PathName -notmatch '^"' -and 
    $_.PathName -match '\s' -and 
    $_.PathName -notmatch '^[A-Za-z]:\\Windows\\'
} | Select-Object Name, PathName, StartMode, State

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechAtomic Alarm Clock

  • 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
  • Drive Software Homepage

  • Exploit-DB #48352

  • VulnCheck Advisory for Atomic Alarm Clock
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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