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-2021-46461

CVE-2021-46461: Nginx Njs Buffer Overflow Vulnerability

CVE-2021-46461 is a buffer overflow vulnerability in Nginx Njs through version 0.7.0 caused by out-of-bounds array access. This article covers the technical details, affected versions, security impact, and mitigation.

Published: February 25, 2026

CVE-2021-46461 Overview

CVE-2021-46461 is an out-of-bounds array access vulnerability in njs through version 0.7.0, the JavaScript interpreter used in NGINX. The vulnerability exists in the njs_vmcode_typeof function within /src/njs_vmcode.c, where an attacker can trigger an out-of-bounds read by manipulating type checking operations. This memory corruption vulnerability can be exploited remotely without authentication, potentially leading to information disclosure, denial of service, or arbitrary code execution.

Critical Impact

This vulnerability allows unauthenticated remote attackers to exploit an out-of-bounds array access in the njs JavaScript interpreter, potentially compromising NGINX servers that utilize njs scripting functionality.

Affected Products

  • nginx njs versions through 0.7.0
  • NGINX deployments using njs scripting module
  • NetApp products using affected njs versions (see NetApp Security Advisory NTAP-20220303-0007)

Discovery Timeline

  • 2022-02-14 - CVE-2021-46461 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2021-46461

Vulnerability Analysis

The vulnerability resides in the njs_vmcode_typeof function in /src/njs_vmcode.c. The root cause is a missing element in the types array used for typeof operations. When the njs interpreter processes a DataView() type, the types array does not contain a corresponding entry, leading to an out-of-bounds array access. This occurs because the array indexing is based on the value's type field, and the absence of the DataView entry causes the access to exceed the bounds of the types array.

The vulnerability is network-accessible and requires no privileges or user interaction to exploit, making it particularly dangerous for internet-facing NGINX servers with njs enabled.

Root Cause

The types array in njs_vmcode_typeof was missing an entry for the DataView() type. When the JavaScript code uses typeof on a DataView object, the interpreter indexes into the types array using the type value, which exceeds the array bounds due to the missing element.

Attack Vector

An attacker can exploit this vulnerability by sending specially crafted JavaScript code to an NGINX server configured to use njs scripting. The malicious code would trigger a typeof operation on a DataView object, causing the out-of-bounds array access. This can be achieved remotely over the network without authentication.

c
// Security patch - Added missing DataView element in typeof table
// Source: https://github.com/nginx/njs/commit/d457c9545e7e71ebb5c0479eb16b9d33175855e2

         &njs_string_object,
         &njs_string_object,
         &njs_string_object,
+        &njs_string_object,
     };

     vm->retval = *types[value->type];

The patch adds the missing &njs_string_object entry to the types array, ensuring all type values have corresponding entries and preventing the out-of-bounds access.

Detection Methods for CVE-2021-46461

Indicators of Compromise

  • Unexpected crashes or segmentation faults in NGINX worker processes involving njs
  • Anomalous JavaScript code submissions targeting DataView operations
  • Memory access violations logged in system logs related to njs_vmcode.c
  • Unusual error patterns in NGINX error logs referencing typeof operations

Detection Strategies

  • Monitor NGINX error logs for unexpected crashes in njs-related modules
  • Implement web application firewall (WAF) rules to detect suspicious JavaScript payloads targeting DataView objects
  • Deploy SentinelOne Singularity to detect memory corruption exploitation attempts in real-time
  • Audit NGINX configurations to identify servers with njs scripting enabled

Monitoring Recommendations

  • Enable detailed logging for NGINX njs operations to capture potential exploitation attempts
  • Configure SentinelOne agents to monitor NGINX processes for abnormal memory access patterns
  • Set up alerts for NGINX worker process crashes that may indicate exploitation attempts
  • Implement network monitoring to detect unusual traffic patterns to njs-enabled endpoints

How to Mitigate CVE-2021-46461

Immediate Actions Required

  • Update nginx njs to version 0.7.1 or later immediately
  • If immediate patching is not possible, disable njs scripting functionality temporarily
  • Review NGINX configurations to identify all servers using njs
  • Implement network segmentation to limit exposure of vulnerable NGINX servers
  • Deploy SentinelOne Singularity for runtime protection against exploitation attempts

Patch Information

The vulnerability has been fixed in the official commit d457c9545e7e71ebb5c0479eb16b9d33175855e2. Organizations should update to njs version 0.7.1 or later, which includes this security fix. Additional details can be found in GitHub Issue #450.

Workarounds

  • Disable njs scripting module in NGINX configurations if not required for business operations
  • Implement strict input validation for any JavaScript code processed by njs
  • Deploy a reverse proxy or WAF in front of vulnerable NGINX servers to filter malicious requests
  • Restrict network access to njs-enabled NGINX servers to trusted sources only
bash
# Disable njs module in NGINX configuration
# Remove or comment out load_module directives for njs
# Example nginx.conf modification:
# load_module modules/ngx_http_js_module.so;  # Comment out this line
# load_module modules/ngx_stream_js_module.so;  # Comment out this line

# Verify njs is disabled
nginx -V 2>&1 | grep -o 'njs' || echo "njs not compiled in"

# Restart NGINX to apply changes
systemctl restart nginx

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechNginx

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.62%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-119
  • Technical References
  • GitHub Issue #450 in Nginx njs

  • NetApp Security Advisory NTAP-20220303-0007
  • Vendor Resources
  • GitHub Commit for Nginx njs
  • Related CVEs
  • CVE-2026-27654: F5 Nginx Plus Buffer Overflow Vulnerability

  • CVE-2021-23017: F5 Nginx Buffer Overflow Vulnerability

  • CVE-2026-33029: Nginx UI Denial of Service Vulnerability

  • CVE-2026-33028: Nginx UI Race Condition Vulnerability
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