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

CVE-2021-3875: Vim Heap-Based Buffer Overflow Vulnerability

CVE-2021-3875 is a heap-based buffer overflow vulnerability in Vim that allows attackers to corrupt memory and potentially execute arbitrary code. This article covers the technical details, affected versions, and mitigation.

Published: February 25, 2026

CVE-2021-3875 Overview

CVE-2021-3875 is a heap-based buffer overflow vulnerability affecting the Vim text editor. This memory corruption flaw occurs during search operations with range specifications, potentially leading to application crashes and denial of service conditions. The vulnerability is triggered when Vim processes specially crafted input that causes the editor to access memory beyond allocated buffer boundaries.

Critical Impact

A local attacker can exploit this heap-based buffer overflow to crash Vim, causing denial of service. While the vulnerability requires user interaction (opening a malicious file or executing a crafted command), successful exploitation can disrupt user workflows and potentially lead to data loss in unsaved editing sessions.

Affected Products

  • Vim (all versions prior to patch 8.2.3489)
  • Fedora 33
  • Fedora 35

Discovery Timeline

  • 2021-10-15 - CVE-2021-3875 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2021-3875

Vulnerability Analysis

The vulnerability resides in Vim's command execution handling within the src/ex_docmd.c source file. When processing search commands that follow address specifications (using / or ? patterns), Vim fails to properly validate line number boundaries before setting the cursor position. This leads to an ml_get error where the application attempts to access a line number that exceeds the actual number of lines in the current buffer.

The flaw is classified under CWE-122 (Heap-based Buffer Overflow) and CWE-787 (Out-of-bounds Write), indicating that improper memory operations occur during the vulnerable code path execution. When exploited, this causes Vim to read or write data outside the intended memory region, resulting in application instability.

Root Cause

The root cause lies in insufficient boundary checking when handling line number addresses during search operations. Specifically, when a search pattern follows another address in a command, Vim would set the cursor line position directly from the provided lnum value without verifying that this value falls within the valid range of lines (1 to curbuf->b_ml.ml_line_count). This allows an attacker to specify a line number greater than the total lines in the buffer, triggering the heap-based buffer overflow.

Attack Vector

The attack requires local access and user interaction. An attacker must convince a user to open a malicious file or execute a specially crafted command sequence within Vim. The exploitation involves:

  1. Crafting a Vim command that specifies a search pattern with an out-of-bounds line address
  2. Having the victim execute this command, either directly or through a malicious modeline/script
  3. Vim attempts to access the invalid line position, causing memory corruption

The following patch demonstrates the fix implemented in Vim patch 8.2.3489:

c
// When '/' or '?' follows another address, start from
// there.
-		    if (lnum != MAXLNUM)
-			curwin->w_cursor.lnum = lnum;
+		    if (lnum > 0 && lnum != MAXLNUM)
+			curwin->w_cursor.lnum =
+			    lnum > curbuf->b_ml.ml_line_count
+				       ? curbuf->b_ml.ml_line_count : lnum;

// Start a forward search at the end of the line (unless
// before the first line).

Source: GitHub Vim Commit

The fix adds two critical checks: ensuring lnum > 0 and clamping the line number to the maximum valid line count (curbuf->b_ml.ml_line_count) if it exceeds the buffer bounds.

Detection Methods for CVE-2021-3875

Indicators of Compromise

  • Vim processes crashing unexpectedly with segmentation faults or memory access errors
  • System logs showing ml_get errors from Vim execution
  • Vim core dumps indicating heap corruption patterns
  • Unusual Vim command sequences in shell history involving search patterns with large line numbers

Detection Strategies

  • Monitor for Vim process crashes and analyze core dumps for heap overflow signatures
  • Implement file integrity monitoring to detect potentially malicious Vim configuration files or modelines
  • Deploy endpoint detection rules that alert on repeated Vim crashes within short time periods
  • Review system audit logs for suspicious command-line invocations of Vim with complex address patterns

Monitoring Recommendations

  • Configure process monitoring to track Vim process stability and abnormal terminations
  • Enable core dump collection for forensic analysis of potential exploitation attempts
  • Use SentinelOne's behavioral AI to detect anomalous Vim execution patterns indicative of exploitation
  • Monitor for the creation of suspicious Vim script files or configuration modifications

How to Mitigate CVE-2021-3875

Immediate Actions Required

  • Update Vim to version 8.2.3489 or later that includes the security patch
  • Review and restrict Vim modeline processing by setting set nomodeline in vimrc
  • Audit any custom Vim scripts or plugins for potentially malicious command sequences
  • Consider using SentinelOne endpoint protection to detect and prevent exploitation attempts

Patch Information

The vulnerability has been addressed in Vim patch 8.2.3489. The fix modifies the src/ex_docmd.c file to add proper boundary validation when setting cursor positions during search operations. Organizations should update through their package manager or compile from source using the patched version.

Security advisories have been published for multiple distributions:

  • Fedora Package Announcements for Fedora 33 and 35
  • Gentoo GLSA 202208-32

Workarounds

  • Disable modeline processing by adding set nomodeline to your ~/.vimrc configuration
  • Avoid opening untrusted files directly in Vim; use cat or less first to inspect content
  • Run Vim in restricted mode (vim -Z) when editing files from untrusted sources
  • Consider using Neovim or alternative editors for handling potentially malicious files
bash
# Configuration example - Add to ~/.vimrc to disable modeline processing
set nomodeline
set modelines=0

# Alternatively, create a secure vimrc for untrusted file editing
echo "set nomodeline" > ~/.vimrc.secure
echo "set modelines=0" >> ~/.vimrc.secure
# Use with: vim -u ~/.vimrc.secure untrusted_file

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechVim

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.15%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-122

  • CWE-787
  • Technical References
  • Openwall OSS Security Mailing List

  • Huntr Vulnerability Bounty

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Gentoo GLSA 202208-32
  • Vendor Resources
  • GitHub Vim Commit Update
  • Related CVEs
  • CVE-2026-32249: Vim Buffer Overflow Vulnerability

  • CVE-2026-28419: Vim Buffer Overflow Vulnerability

  • CVE-2026-28421: Vim Buffer Overflow Vulnerability

  • CVE-2026-28420: Vim 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