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-7372

CVE-2026-7372: GeoVision GV-VMS Firmware RCE Vulnerability

CVE-2026-7372 is a stack overflow remote code execution vulnerability in GeoVision GV-VMS V20 firmware that allows attackers to execute arbitrary code as SYSTEM via unauthenticated HTTP requests. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: May 7, 2026

CVE-2026-7372 Overview

CVE-2026-7372 is a stack overflow vulnerability in the WebCam Server Login functionality of GeoVision GV-VMS V20 20.0.2. The flaw resides in the HTTP authentication handler, where an unconstrained sscanf call parses the decoded authorization header into fixed-size 40-byte stack buffers for the username and password. Unauthenticated attackers can send a crafted HTTP request to trigger the overflow and potentially achieve arbitrary code execution as SYSTEM on the host running the service. The issue is tracked under CWE-787 (Out-of-bounds Write).

Critical Impact

An unauthenticated network attacker can corrupt the call stack of the WebCam Server process and execute arbitrary code with SYSTEM privileges on the GV-VMS host.

Affected Products

  • GeoVision GV-VMS V20 version 20.0.2
  • GeoVision GV-VMS firmware (matching vulnerable build)
  • Deployments exposing the WebCam Server login endpoint over HTTP

Discovery Timeline

  • 2026-05-04 - CVE-2026-7372 published to the National Vulnerability Database
  • 2026-05-05 - Last updated in NVD database

Technical Details for CVE-2026-7372

Vulnerability Analysis

The vulnerability lives in the WebCam Server component that handles HTTP Basic authentication for GV-VMS. After Base64-decoding the Authorization header into an internal Buffer variable, the service calls sscanf to split the decoded string into separate username and password fields using a colon delimiter.

Both destination variables are allocated as 40-byte arrays on the stack. The format string passed to sscanf does not include a width specifier, so the function copies bytes until it encounters the delimiter or end of input. Any decoded username or password longer than 40 characters writes past the destination buffer and corrupts adjacent stack memory, including the saved return address.

Because the request is processed before authentication completes, no credentials or prior session are required. A successful exploit yields code execution in the security context of the WebCam Server process, which runs as SYSTEM on Windows hosts.

Root Cause

The root cause is missing length validation in the call to sscanf. The format string lacks a maximum field width such as %39s, allowing attacker-controlled input to overflow fixed-size stack buffers. This is a classic CWE-787 out-of-bounds write that maps to the stack-based buffer overflow class CWE-121.

Attack Vector

The attack vector is network-based. An attacker reachable on the WebCam Server HTTP port crafts an Authorization: Basic header whose Base64-decoded payload contains a username or password longer than 40 bytes. The malformed credential string forces sscanf to write past the stack frame.

Exploitation reliability is reduced by constraints on the input bytes. The Base64 decoding step and the colon-delimited sscanf parsing prevent embedded null bytes and certain control characters, which complicates shellcode staging but does not prevent stack frame corruption or return-address control. Refer to the GeoVision Cyber Security Resources and Talos Intelligence Vulnerability Reports for additional technical details.

Detection Methods for CVE-2026-7372

Indicators of Compromise

  • HTTP requests to the GV-VMS WebCam Server containing Authorization: Basic headers whose decoded payload exceeds 80 bytes before the colon delimiter.
  • Unexpected crashes, restarts, or access violations in the WebCam Server process recorded in Windows Application or WER event logs.
  • Outbound connections from the GV-VMS host to unfamiliar IP addresses immediately following inbound HTTP authentication attempts.

Detection Strategies

  • Inspect HTTP traffic to the WebCam Server and flag Basic authentication headers whose decoded length is anomalous compared to legitimate clients.
  • Monitor the WebCam Server process for child process creation, unexpected DLL loads, or memory regions transitioning to executable, all of which indicate post-overflow code execution.
  • Correlate authentication failures, process crashes, and new outbound network sessions on GV-VMS hosts within short time windows.

Monitoring Recommendations

  • Forward GV-VMS host telemetry, IIS or embedded web server logs, and Windows Security events to a centralized SIEM for correlation.
  • Alert on any process spawned by the WebCam Server binary, since legitimate operation rarely requires shell or scripting interpreters.
  • Track inbound connections to the WebCam Server from networks that are not part of the documented camera management VLAN.

How to Mitigate CVE-2026-7372

Immediate Actions Required

  • Restrict network access to the GV-VMS WebCam Server to trusted management subnets using firewall rules or ACLs.
  • Disable the WebCam Server feature on GV-VMS deployments where it is not actively required.
  • Enforce HTTPS and place the management interface behind a VPN or zero-trust gateway to limit unauthenticated reachability.

Patch Information

GeoVision tracks security fixes on its GeoVision Cyber Security Resources page. Administrators should consult that advisory portal for the patched GV-VMS V20 build that addresses CVE-2026-7372 and apply it on all affected installations. Until a fixed build is deployed, treat the WebCam Server endpoint as untrusted and unauthenticated-reachable.

Workarounds

  • Block external access to the WebCam Server HTTP port at the network perimeter and on host firewalls.
  • Place GV-VMS servers on an isolated VLAN with strict ingress filtering from camera operators only.
  • Deploy a reverse proxy or web application firewall that rejects Authorization: Basic headers whose decoded credential fields exceed 40 bytes.

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechGeovision

  • SeverityCRITICAL

  • CVSS Score9.0

  • EPSS Probability0.13%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-787
  • Technical References
  • Talos Intelligence Vulnerability Reports
  • Vendor Resources
  • GeoVision Cyber Security Resources
  • Related CVEs
  • CVE-2026-7841: GeoVision GV-ASWeb RCE Vulnerability

  • CVE-2026-42364: Geovision GV-LPC2011 Firmware RCE Flaw

  • CVE-2026-42370: Geovision GV-VMS Firmware RCE Vulnerability

  • CVE-2021-47795: GeoVision GeoWebServer 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