Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2025-68160

CVE-2025-68160: OpenSSL Line-Buffering BIO DoS Vulnerability

CVE-2025-68160 is a denial of service vulnerability in OpenSSL's line-buffering BIO filter that causes heap-based memory corruption. This article covers the technical details, affected versions, impact assessment, and mitigation.

Published: January 30, 2026

CVE-2025-68160 Overview

CVE-2025-68160 is a heap-based out-of-bounds write vulnerability affecting OpenSSL's line-buffering BIO filter (BIO_f_linebuffer). The vulnerability is triggered when writing large, newline-free data into a BIO chain using the line-buffering filter where the next BIO in the chain performs short writes. This memory corruption issue can result in application crashes, leading to a Denial of Service condition.

Critical Impact

Applications using the BIO_f_linebuffer filter with BIO chains that can short-write are susceptible to heap corruption and potential denial of service when processing large, newline-free input data.

Affected Products

  • OpenSSL 3.6
  • OpenSSL 3.5
  • OpenSSL 3.4
  • OpenSSL 3.3
  • OpenSSL 3.0
  • OpenSSL 1.1.1
  • OpenSSL 1.0.2

Discovery Timeline

  • 2026-01-27 - CVE-2025-68160 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2025-68160

Vulnerability Analysis

This vulnerability (CWE-787: Out-of-bounds Write) occurs within the BIO_f_linebuffer filter implementation in OpenSSL. The line-buffering BIO filter is designed to buffer output data until a newline character is encountered, at which point the buffered data is flushed to the next BIO in the chain.

The flaw manifests when large amounts of data without newline characters are written to a BIO chain where BIO_f_linebuffer is active and the subsequent BIO performs short writes (writes fewer bytes than requested). Under these conditions, the filter's internal buffer management logic fails to properly account for the partial write, resulting in heap memory being written beyond its allocated bounds.

While the vulnerability requires a local attack vector with low-privileged access and has high complexity to exploit, successful exploitation leads to memory corruption that typically crashes the application. The FIPS modules in OpenSSL versions 3.6, 3.5, 3.4, 3.3, and 3.0 are not affected as the BIO implementation exists outside the FIPS module boundary.

Root Cause

The root cause lies in improper boundary validation within the BIO_f_linebuffer implementation when handling short writes from downstream BIOs. When the next BIO in the chain writes fewer bytes than the line buffer provides, the filter's internal state becomes inconsistent, leading to subsequent write operations targeting memory addresses beyond the allocated heap buffer.

The line-buffering filter is not used by default in TLS/SSL data paths, which limits the attack surface. In OpenSSL command-line applications, it is typically only pushed onto stdout/stderr on VMS systems. Third-party applications that explicitly use this filter with a BIO chain capable of short-writes and that process large, newline-free data influenced by an attacker would be affected.

Attack Vector

Exploitation requires a local attacker with low privileges to influence an application that:

  1. Explicitly uses the BIO_f_linebuffer filter in its BIO chain
  2. Has a subsequent BIO that can perform short writes
  3. Processes large, newline-free data that could be influenced by the attacker

The vulnerability mechanism involves writing data to trigger the buffer overflow condition. When the downstream BIO short-writes, the line buffer's internal pointer tracking becomes corrupted, causing subsequent operations to write data past the end of the heap-allocated buffer. This heap corruption typically manifests as an application crash.

For detailed technical information about the vulnerability and its patches, see the OpenSSL Security Advisory.

Detection Methods for CVE-2025-68160

Indicators of Compromise

  • Unexpected application crashes in processes using OpenSSL libraries
  • Segmentation faults or heap corruption errors in application logs
  • Core dumps showing memory access violations in BIO-related functions
  • Unusual memory allocation patterns in OpenSSL-linked applications

Detection Strategies

  • Monitor system logs for application crashes involving OpenSSL library components
  • Implement memory sanitizers (AddressSanitizer) during development to detect heap overflow conditions
  • Use runtime application self-protection tools to detect out-of-bounds memory access
  • Deploy SentinelOne Singularity Platform to detect and prevent memory corruption exploitation attempts

Monitoring Recommendations

  • Enable detailed crash logging for applications utilizing OpenSSL
  • Monitor for repeated application restarts that may indicate DoS exploitation attempts
  • Track OpenSSL version inventory across the environment to identify vulnerable deployments
  • Implement alerting on unusual patterns of application failures

How to Mitigate CVE-2025-68160

Immediate Actions Required

  • Inventory all systems and applications using affected OpenSSL versions (3.6, 3.5, 3.4, 3.3, 3.0, 1.1.1, 1.0.2)
  • Prioritize patching for applications that explicitly use BIO_f_linebuffer with user-influenced data
  • Review custom applications for direct use of the line-buffering BIO filter
  • Apply vendor patches as they become available for affected OpenSSL versions

Patch Information

OpenSSL has released security patches addressing this vulnerability across all affected versions. The patches correct the buffer management logic in the BIO_f_linebuffer implementation to properly handle short writes from downstream BIOs.

Relevant patch commits are available on GitHub:

  • Patch commit 384011202af92605d926fafe4a0bcd6b65d162ad
  • Patch commit 475c466ef2fbd8fc1df6fae1c3eed9c813fc8ff6
  • Patch commit 4c96fbba618e1940f038012506ee9e21d32ee12c
  • Patch commit 6845c3b6460a98b1ec4e463baa2ea1a63a32d7c0
  • Patch commit 68a7cd2e2816c3a02f4d45a2ce43fc04fac97096

For complete advisory details, refer to the OpenSSL Security Advisory.

Workarounds

  • Avoid using BIO_f_linebuffer in applications that process untrusted or attacker-influenced data
  • Implement input validation to limit the size of newline-free data blocks processed through BIO chains
  • Consider removing the line-buffering filter from BIO chains where short-writes are possible
  • Restrict the maximum buffer size for BIO operations processing external data
bash
# Check OpenSSL version on the system
openssl version -a

# Identify processes using OpenSSL libraries
lsof | grep libssl

# List installed OpenSSL packages (Debian/Ubuntu)
dpkg -l | grep openssl

# List installed OpenSSL packages (RHEL/CentOS)
rpm -qa | grep openssl

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOpenssl

  • SeverityMEDIUM

  • CVSS Score4.7

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-787
  • Technical References
  • GitHub OpenSSL Commit

  • GitHub OpenSSL Commit

  • GitHub OpenSSL Commit

  • GitHub OpenSSL Commit

  • GitHub OpenSSL Commit

  • OpenSSL Security Advisory
  • Related CVEs
  • CVE-2026-28389: OpenSSL CMS DoS Vulnerability

  • CVE-2026-28388: OpenSSL Delta CRL DoS Vulnerability

  • CVE-2026-28386: OpenSSL AES-CFB128 DoS Vulnerability

  • CVE-2026-28390: OpenSSL CMS DoS 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