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

CVE-2020-37130: Nsauditor 3.2.0.0 DoS Vulnerability

CVE-2020-37130 is a denial of service vulnerability in Nsauditor 3.2.0.0 that crashes the application via malicious input. This post covers the technical details, affected versions, impact, and mitigation strategies.

Published: February 6, 2026

CVE-2020-37130 Overview

CVE-2020-37130 is a denial of service vulnerability affecting Nsauditor version 3.2.0.0. The vulnerability exists in the registration name input field and allows attackers to crash the application by supplying a malicious payload. Specifically, attackers can create a payload consisting of 1000 bytes of repeated characters which, when pasted into the registration name field, triggers a buffer overflow condition leading to an application crash.

Critical Impact

This buffer overflow vulnerability enables local attackers to crash Nsauditor through crafted input, causing denial of service and potential disruption to network auditing operations.

Affected Products

  • Nsauditor 3.2.0.0
  • Nsauditor Network Security Auditor (registration component)

Discovery Timeline

  • 2026-02-05 - CVE-2020-37130 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2020-37130

Vulnerability Analysis

This vulnerability is classified as CWE-120 (Buffer Copy without Checking Size of Input), commonly known as a classic buffer overflow. The root cause lies in the application's failure to properly validate the length of user input before copying it into a fixed-size memory buffer. When a user provides input exceeding the expected buffer size in the registration name field, the excess data overwrites adjacent memory, corrupting the application state and causing an immediate crash.

The attack requires local access to the system where Nsauditor is installed and user interaction to trigger the vulnerable code path through the registration dialog. While this limits the attack surface compared to remotely exploitable vulnerabilities, the impact results in complete loss of availability for the affected application.

Root Cause

The vulnerability stems from improper input validation in the registration name handling routine. The application allocates a fixed-size buffer to store the registration name but fails to implement boundary checks when copying user-supplied data. This classic buffer overflow condition (CWE-120) occurs when the input exceeds the allocated buffer space, causing memory corruption that leads to application termination.

Attack Vector

The attack vector is local, requiring an attacker to have access to the target system where Nsauditor is installed. The exploitation process involves:

  1. Opening the Nsauditor application
  2. Navigating to the registration dialog
  3. Pasting a crafted payload of 1000 or more repeated characters into the registration name field
  4. The application crashes upon processing the oversized input

The vulnerability is documented in Exploit-DB #48286, which provides detailed information about the exploitation technique. The attack requires no special privileges but does require user interaction to trigger the vulnerable code path.

Detection Methods for CVE-2020-37130

Indicators of Compromise

  • Unexpected Nsauditor application crashes or process terminations
  • Windows Event Log entries indicating application faults in nsauditor.exe
  • Memory access violation errors related to the Nsauditor process
  • Presence of unusually large text strings in clipboard history or input buffers

Detection Strategies

  • Monitor for repeated Nsauditor application crashes through Windows Event Viewer
  • Implement application crash monitoring solutions to detect abnormal termination patterns
  • Review system logs for access violation or buffer overflow indicators associated with Nsauditor
  • Deploy endpoint detection solutions capable of identifying buffer overflow attack patterns

Monitoring Recommendations

  • Configure Windows Error Reporting to capture crash dumps for forensic analysis
  • Enable detailed application logging where supported
  • Monitor process stability metrics for Nsauditor installations across the environment
  • Implement alerting for sudden application terminations on systems running network auditing tools

How to Mitigate CVE-2020-37130

Immediate Actions Required

  • Evaluate continued use of Nsauditor 3.2.0.0 and consider alternative network auditing tools
  • Restrict access to systems running the vulnerable Nsauditor version to trusted users only
  • Implement application allowlisting to prevent unauthorized execution of Nsauditor
  • Monitor vendor communications for security updates addressing this vulnerability

Patch Information

No vendor patch information is currently available in the NVD database for this vulnerability. Users should check the NSA Auditor official website for updated versions that may address this issue. Additional technical details and advisory information can be found at the VulnCheck Advisory on NSA Auditor.

Workarounds

  • Avoid using the registration functionality until a patch is available
  • Restrict clipboard functionality when interacting with the registration dialog
  • Implement input filtering at the endpoint level to block excessively long text inputs
  • Consider deploying the application in a sandboxed environment to contain potential crashes

Since no verified code examples are available, organizations should reference the Exploit-DB #48286 entry for technical details on the exploitation mechanism and develop appropriate detection signatures based on the documented attack patterns.

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNsauditor

  • SeverityMEDIUM

  • CVSS Score6.7

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:A/VC:N/VI:N/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-120
  • Technical References
  • NSA Auditor Tool Overview

  • Exploit-DB #48286

  • VulnCheck Advisory on NSA Auditor
  • Related CVEs
  • CVE-2020-37131: Product Key Explorer DoS Vulnerability

  • CVE-2021-47895: Nsauditor 3.2.2.0 DoS Vulnerability

  • CVE-2018-25213: Nsauditor Buffer Overflow Vulnerability

  • CVE-2020-37119: Nsauditor Buffer Overflow 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