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-2026-33069

CVE-2026-33069: PJSIP Information Disclosure Vulnerability

CVE-2026-33069 is an information disclosure vulnerability in PJSIP that allows out-of-bounds heap reads when processing SIP messages. This article covers the technical details, affected versions, and mitigation steps.

Published: March 27, 2026

CVE-2026-33069 Overview

CVE-2026-33069 is an out-of-bounds heap read vulnerability in PJSIP, a free and open source multimedia communication library written in C. The vulnerability exists in the pjsip_multipart_parse() function where improper boundary checking allows 1-2 bytes of adjacent heap memory to be read after boundary string matching operations.

Critical Impact

All applications processing incoming SIP messages with multipart bodies or SDP content are potentially affected, enabling attackers to read sensitive heap memory contents via malformed SIP messages.

Affected Products

  • PJSIP versions 2.16 and below
  • Applications using PJSIP for SIP message processing
  • VoIP and multimedia communication systems built on PJSIP

Discovery Timeline

  • 2026-03-20 - CVE CVE-2026-33069 published to NVD
  • 2026-03-23 - Last updated in NVD database

Technical Details for CVE-2026-33069

Vulnerability Analysis

This out-of-bounds heap read vulnerability occurs in the multipart parsing logic of PJSIP. The issue stems from improper validation of the buffer pointer position after advancing past a boundary delimiter. When parsing multipart SIP messages, the code advances the curptr pointer past the delimiter without first verifying that it has not exceeded the buffer boundary (endptr). This oversight allows the code to read 1-2 bytes beyond the allocated heap buffer when processing specially crafted SIP messages.

The vulnerability can be triggered remotely by sending malformed SIP messages with manipulated multipart body boundaries. While the information disclosure is limited to 1-2 bytes per exploitation attempt, repeated exploitation could potentially leak more sensitive heap data. The network-accessible nature of this vulnerability makes it a concern for any internet-facing SIP infrastructure.

Root Cause

The root cause is a missing bounds check in pjsip/src/pjsip/sip_multipart.c. After the boundary string is matched and curptr is advanced past the delimiter, the code immediately attempts to dereference and check the character values without first confirming that curptr still points within the valid buffer range. This creates a race between pointer advancement and boundary validation, resulting in a CWE-125 (Out-of-bounds Read) condition.

Attack Vector

An attacker can exploit this vulnerability by sending specially crafted SIP messages with malformed multipart boundaries to a vulnerable PJSIP application. The attack vector is network-based, requiring no authentication or user interaction. By manipulating the boundary strings in multipart SIP messages, an attacker can cause the parser to read beyond the allocated heap buffer, potentially disclosing sensitive memory contents.

The following patch demonstrates the security fix applied in version 2.17:

c
 
         /* Eat the boundary */
         curptr += delim.slen;
-        if (*curptr=='-' && curptr<endptr-1 && *(curptr+1)=='-') {
+        if (curptr+1 < endptr && *curptr=='-' && *(curptr+1)=='-') {
             /* Found the closing delimiter */
             curptr += 2;
             break;
         }
         /* Optional whitespace after delimiter */
         while (curptr!=endptr && IS_SPACE(*curptr)) ++curptr;
         /* Mandatory CRLF */
+        if (curptr == endptr) {
+            PJ_LOG(2, (THIS_FILE, "Unexpected end of buffer after boundary"));
+            return NULL;
+        }
         if (*curptr=='\r') ++curptr;
-        if (*curptr!='\n') {
+        if (curptr == endptr || *curptr!='\n') {
             /* Expecting a newline here */
             PJ_LOG(2, (THIS_FILE, "Failed to find newline"));
 

Source: GitHub Commit Details

Detection Methods for CVE-2026-33069

Indicators of Compromise

  • Unusual SIP messages with malformed or truncated multipart boundaries arriving at SIP endpoints
  • Application crashes or unexpected behavior in SIP message parsing routines
  • Memory access violations or heap corruption errors in PJSIP-based applications
  • Abnormal traffic patterns targeting SIP services with high volumes of malformed requests

Detection Strategies

  • Monitor SIP traffic for messages containing abnormal multipart body structures or truncated boundaries
  • Implement application-level logging in PJSIP to capture parsing errors and boundary validation failures
  • Deploy network intrusion detection signatures for malformed SIP multipart messages
  • Use memory sanitizers (AddressSanitizer, Valgrind) during testing to detect out-of-bounds reads

Monitoring Recommendations

  • Enable detailed logging for SIP message parsing failures and boundary validation errors
  • Monitor heap memory access patterns in PJSIP applications for anomalous read operations
  • Set up alerts for increased rates of SIP message parsing failures
  • Track application stability metrics for PJSIP-based services to identify potential exploitation attempts

How to Mitigate CVE-2026-33069

Immediate Actions Required

  • Upgrade PJSIP to version 2.17 or later which contains the security fix
  • Review and audit any applications using PJSIP for multipart SIP message processing
  • Implement input validation at the network perimeter for SIP traffic
  • Consider deploying a SIP-aware firewall or application gateway to filter malformed messages

Patch Information

The vulnerability is resolved in PJSIP version 2.17. The fix adds proper bounds checking before accessing buffer contents after boundary string matching. Organizations should upgrade to version 2.17 or apply the security patch available at the GitHub Commit Details. For additional details, refer to the GitHub Security Advisory.

Workarounds

  • Implement network-level filtering to drop malformed SIP messages before they reach vulnerable applications
  • Deploy a SIP proxy or application-layer gateway that validates multipart message structure
  • Restrict SIP service exposure to trusted networks only until patching is complete
bash
# Configuration example
# Example: Restrict SIP service to trusted networks using iptables
iptables -A INPUT -p udp --dport 5060 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p udp --dport 5060 -j DROP
iptables -A INPUT -p tcp --dport 5060 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 5060 -j DROP

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechPjsip

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/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
  • AvailabilityNone
  • CWE References
  • CWE-125
  • Vendor Resources
  • GitHub Commit Details

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-40614: PJSIP Opus Buffer Overflow Vulnerability

  • CVE-2026-40892: PJSIP Buffer Overflow Vulnerability

  • CVE-2026-34235: PJSIP Buffer Overflow Vulnerability

  • CVE-2026-32945: PJSIP 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