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

CVE-2020-12403: Mozilla NSS Buffer Overflow Vulnerability

CVE-2020-12403 is a buffer overflow flaw in Mozilla NSS affecting CHACHA20-POLY1305 implementation. It causes out-of-bounds reads that threaten confidentiality and availability. This article covers technical details, affected versions, impact, and mitigation.

Published: March 4, 2026

CVE-2020-12403 Overview

A critical out-of-bounds read vulnerability was discovered in the CHACHA20-POLY1305 implementation within Mozilla Network Security Services (NSS). The flaw exists in how multi-part ChaCha20 encryption is handled, allowing attackers to trigger out-of-bounds memory reads that can lead to information disclosure and denial of service conditions.

Critical Impact

This vulnerability enables network-based attackers to read sensitive memory contents and crash affected applications without requiring authentication or user interaction, posing significant risks to confidentiality and system availability.

Affected Products

  • Mozilla NSS versions prior to 3.55
  • Systems and applications utilizing vulnerable NSS cryptographic libraries
  • Linux distributions shipping affected NSS packages (Debian, Red Hat, etc.)

Discovery Timeline

  • 2021-05-27 - CVE-2020-12403 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-12403

Vulnerability Analysis

The vulnerability resides in the ChaCha20-Poly1305 authenticated encryption implementation within Mozilla NSS. ChaCha20-Poly1305 is a widely-used authenticated encryption with associated data (AEAD) cipher that combines the ChaCha20 stream cipher with the Poly1305 message authentication code. When the multi-part ChaCha20 mode is utilized, the implementation fails to properly validate buffer boundaries, leading to out-of-bounds memory access.

The flaw specifically manifests when processing cryptographic operations in multi-part mode, where data is encrypted or decrypted in segments rather than as a single contiguous block. The improper handling of chunk boundaries allows memory reads beyond the intended buffer limits.

Root Cause

The root cause stems from insufficient bounds checking in the multi-part ChaCha20 encryption routines (CWE-125: Out-of-bounds Read). The implementation did not properly validate input lengths and buffer boundaries when processing data in segments, and the multi-part functionality was not operating correctly. Mozilla addressed this by explicitly disabling multi-part ChaCha20 support and implementing strict tag length enforcement to prevent exploitation.

Attack Vector

The vulnerability is exploitable over the network without requiring authentication or user interaction. An attacker can craft malicious encrypted payloads that trigger the out-of-bounds read condition when processed by the vulnerable NSS library. This can be achieved through:

  • Sending specially crafted TLS handshake messages to servers using NSS
  • Manipulating encrypted communications to trigger vulnerable code paths
  • Exploiting applications that use NSS for cryptographic operations

The attack does not require prior access to the target system, making it particularly dangerous for internet-facing services utilizing vulnerable NSS versions.

Detection Methods for CVE-2020-12403

Indicators of Compromise

  • Unexpected application crashes or segmentation faults in NSS-dependent services
  • Abnormal memory access patterns in processes using NSS cryptographic functions
  • Error logs indicating cryptographic operation failures with ChaCha20-Poly1305
  • Unusual TLS connection behavior or malformed encrypted traffic patterns

Detection Strategies

  • Monitor for NSS library crashes and abnormal termination events in system logs
  • Implement network intrusion detection rules for malformed TLS traffic patterns
  • Deploy application-level monitoring to detect unusual cryptographic operation failures
  • Audit installed NSS library versions across infrastructure to identify vulnerable deployments

Monitoring Recommendations

  • Configure centralized logging for all NSS-dependent applications and services
  • Enable core dump analysis for processes experiencing unexpected termination
  • Implement version tracking and alerting for cryptographic library dependencies
  • Monitor for unusual network traffic patterns targeting TLS-enabled services

How to Mitigate CVE-2020-12403

Immediate Actions Required

  • Upgrade Mozilla NSS to version 3.55 or later immediately
  • Identify all applications and services dependent on NSS and prioritize patching
  • Review TLS configurations to ensure proper cipher suite management
  • Monitor systems for signs of exploitation attempts until patches are applied

Patch Information

Mozilla has addressed this vulnerability in NSS version 3.55. The fix explicitly disables multi-part ChaCha20 functionality (which was not working correctly) and implements strict tag length enforcement to prevent out-of-bounds read conditions. Organizations should consult the Mozilla NSS 3.55 Release Notes for detailed patch information.

Linux distributions have released corresponding security updates:

  • Red Hat has tracked this issue in Red Hat Bug Report
  • Debian LTS has published guidance in their Debian LTS Security Announcement
  • NetApp has released advisories for affected products via their NetApp Security Advisory

Workarounds

  • Disable ChaCha20-Poly1305 cipher suites in TLS configurations where feasible
  • Implement network segmentation to limit exposure of vulnerable services
  • Deploy web application firewalls with rules to detect malformed TLS traffic
  • Consider temporary service isolation for critical applications until patching is complete
bash
# Configuration example
# Check installed NSS version on Linux systems
rpm -qa | grep nss
# or for Debian-based systems
dpkg -l | grep libnss

# Verify NSS version meets minimum requirements
nss-config --version
# Should output 3.55 or higher

# Update NSS on Red Hat/CentOS systems
sudo yum update nss nss-util nss-sysinit

# Update NSS on Debian/Ubuntu systems
sudo apt update && sudo apt upgrade libnss3

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechMozilla Nss

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.58%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Technical References
  • Debian LTS Security Announcement

  • NetApp Security Advisory
  • Vendor Resources
  • Red Hat Bug Report

  • Mozilla NSS 3.55 Release Notes
  • Related CVEs
  • CVE-2021-43527: Mozilla NSS Buffer Overflow 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