A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2018-25344

CVE-2018-25344: 10-Strike Network Inventory Explorer Flaw

CVE-2018-25344 is a stack-based buffer overflow in 10-Strike Network Inventory Explorer 8.54 that enables local code execution. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 28, 2026

CVE-2018-25344 Overview

CVE-2018-25344 is a stack-based buffer overflow vulnerability [CWE-121] in 10-Strike Network Inventory Explorer version 8.54. The flaw resides in the registration key input field of the application's licensing dialog. A local attacker can paste a crafted registration key containing 4188 bytes of padding, a Structured Exception Handler (SEH) chain overwrite, and shellcode to achieve arbitrary code execution. The exploit triggers when the application processes the malicious input and the overwritten SEH record is dispatched. Code executes with the privileges of the running application.

Critical Impact

Local attackers can execute arbitrary code in the context of 10-Strike Network Inventory Explorer by pasting a malicious registration key into the registration dialog.

Affected Products

  • 10-Strike Network Inventory Explorer 8.54
  • Windows installations running the affected version
  • Systems where the registration dialog is accessible to local users

Discovery Timeline

  • 2026-05-23 - CVE-2018-25344 published to NVD
  • 2026-05-26 - Last updated in NVD database

Technical Details for CVE-2018-25344

Vulnerability Analysis

The vulnerability is a classic stack-based buffer overflow that abuses Windows Structured Exception Handler (SEH) semantics for code execution. The registration key input field copies user-supplied data into a fixed-size stack buffer without proper bounds checking. When the supplied string exceeds the buffer size, adjacent stack frames are corrupted, including the SEH chain record consisting of the Next SEH pointer and the SEH Handler pointer.

After overwriting the SEH record, the attacker triggers an exception during processing. The Windows exception dispatcher then transfers execution to the attacker-controlled handler address. Typical exploitation chains land on a POP POP RET gadget in a non-SafeSEH module, redirecting flow into shellcode placed earlier in the buffer.

The required payload layout uses 4188 bytes of padding before the SEH chain values, indicating the offset between the input buffer and the saved exception registration record on the stack.

Root Cause

The root cause is the absence of input length validation on the registration key field. The application does not enforce a maximum input length and does not use safe string-copy primitives. Additionally, the binary appears to lack modern exploit mitigations such as SafeSEH or SEHOP on the loaded modules used as gadget sources, which is what allows SEH-based overwrite exploitation to succeed.

Attack Vector

Exploitation requires local interaction with the application's user interface. The attacker opens the registration dialog, pastes the crafted string containing padding, SEH overwrite values, and shellcode, and submits the input. The vulnerability is not remotely exploitable over the network. Successful exploitation yields code execution with the privileges of the user running 10-Strike Network Inventory Explorer.

A public proof-of-concept is documented at Exploit-DB #44840. Additional technical context is available in the VulnCheck Advisory on 10-Strike.

Detection Methods for CVE-2018-25344

Indicators of Compromise

  • Unexpected child processes spawned by Network Inventory Explorer.exe or its associated binary.
  • Application crash events in the Windows Event Log referencing the 10-Strike process with exception code 0xC0000005 (access violation).
  • Presence of registration key strings in clipboard history or paste buffers exceeding 4000 bytes.

Detection Strategies

  • Monitor process creation events where the parent process is the 10-Strike Network Inventory Explorer binary and the child is a shell, scripting host, or LOLBin.
  • Inspect Windows Error Reporting (WER) telemetry for repeated faults in the 10-Strike process with faulting module addresses outside legitimate ranges.
  • Apply behavioral detection rules that flag stack pivots and SEH dispatch into non-image memory regions.

Monitoring Recommendations

  • Enable command-line auditing (Audit Process Creation, Event ID 4688) and forward telemetry to a centralized SIEM.
  • Track installations and version inventories of 10-Strike Network Inventory Explorer to identify hosts still running 8.54.
  • Alert on interactive use of the registration dialog by non-administrative users.

How to Mitigate CVE-2018-25344

Immediate Actions Required

  • Identify all endpoints running 10-Strike Network Inventory Explorer 8.54 and restrict access to the application.
  • Remove the application from systems where it is no longer required.
  • Block standard users from launching the affected binary via application control policies until a fixed version is deployed.

Patch Information

No vendor patch is referenced in the available advisory data. Consult 10-Strike Software for the latest releases and verify whether a fixed build addressing the registration field overflow is available before redeploying the product.

Workarounds

  • Enforce least privilege so the application runs under standard user accounts, limiting the impact of code execution.
  • Use Windows Defender Application Control (WDAC) or AppLocker to restrict execution of the vulnerable binary.
  • Enable system-wide Data Execution Prevention (DEP) and Structured Exception Handling Overwrite Protection (SEHOP) to raise the bar for SEH-based exploitation.
bash
# Enable SEHOP system-wide on Windows (run as Administrator)
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\kernel" /v DisableExceptionChainValidation /t REG_DWORD /d 0 /f

# Enable DEP for all processes
bcdedit /set nx AlwaysOn

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/Tech10 Strike Network Inventory Explorer

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/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-121
  • Technical References
  • 10-Strike Software Overview

  • Exploit-DB #44840

  • VulnCheck Advisory on 10-Strike
  • Related CVEs
  • CVE-2020-37138: 10-Strike Network Inventory RCE Flaw

  • CVE-2020-37142: 10-Strike Network Inventory Explorer RCE

  • CVE-2020-36961: 10-Strike Network Inventory RCE Flaw

  • CVE-2021-47767: Network Inventory Explorer Privilege Escalation
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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