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

CVE-2026-1990: oatpp Use After Free Vulnerability

CVE-2026-1990 is a use after free vulnerability in oatpp up to version 1.3.1 that leads to null pointer dereference. This post covers the technical details, affected versions, security impact, and mitigation steps.

Published: February 13, 2026

CVE-2026-1990 Overview

A null pointer dereference vulnerability has been identified in the oatpp C++ web framework affecting versions up to 1.3.1. The vulnerability exists in the oatpp::data::type::ObjectWrapper::ObjectWrapper function within the file src/oatpp/data/type/Type.hpp. When exploited, an attacker with local access can cause a denial of service condition through improper resource handling leading to a null pointer dereference.

Critical Impact

Local attackers can trigger application crashes through null pointer dereference, potentially causing denial of service in applications built with the affected oatpp framework versions.

Affected Products

  • oatpp versions up to 1.3.1
  • Applications built using affected oatpp framework versions
  • C++ web services utilizing oatpp ObjectWrapper functionality

Discovery Timeline

  • February 6, 2026 - CVE-2026-1990 published to NVD
  • February 6, 2026 - Last updated in NVD database

Technical Details for CVE-2026-1990

Vulnerability Analysis

This vulnerability affects the oatpp web framework, a lightweight C++ library used for building high-performance web applications and APIs. The flaw resides in the ObjectWrapper constructor within the type system implementation. When the ObjectWrapper::ObjectWrapper function receives malformed or unexpected input, it fails to properly validate pointer references before use, resulting in a null pointer dereference condition.

The vulnerability is classified under CWE-404 (Improper Resource Shutdown or Release), indicating that the underlying issue involves improper handling of resources during object wrapper operations. The exploit has been publicly disclosed, and the oatpp project maintainers were notified through GitHub Issue #1080, though no response has been received as of the last update.

Root Cause

The root cause stems from insufficient null pointer validation in the ObjectWrapper template class constructor. The type system in oatpp uses wrapper objects to handle various data types, and the constructor does not adequately verify that internal pointer references are valid before performing operations. This oversight allows specially crafted input to trigger a null pointer dereference when the wrapper attempts to access uninitialized or null memory regions.

Attack Vector

The attack requires local access to the target system where an application using the vulnerable oatpp framework is running. An attacker can exploit this vulnerability by manipulating input data that gets processed by the ObjectWrapper functionality, causing the application to crash due to the null pointer dereference. While the attack does not allow code execution, it can effectively cause a denial of service condition in affected applications.

The vulnerability mechanism involves passing specially crafted data that causes the ObjectWrapper constructor to receive null references. When the constructor attempts to operate on these null references without proper validation, the application crashes. For detailed technical analysis, refer to the GitHub issue report and VulDB entry.

Detection Methods for CVE-2026-1990

Indicators of Compromise

  • Unexpected application crashes with segmentation fault or access violation errors in oatpp-based applications
  • Core dumps showing null pointer access in Type.hpp or ObjectWrapper-related stack frames
  • Repeated crash-restart cycles in services utilizing the oatpp framework

Detection Strategies

  • Monitor application logs for segmentation fault signals (SIGSEGV) in oatpp-based services
  • Implement crash dump analysis to identify null pointer dereferences in oatpp::data::type::ObjectWrapper functions
  • Use static analysis tools to scan for use of oatpp versions 1.3.1 or earlier in your codebase
  • Deploy runtime monitoring to detect abnormal termination patterns in affected applications

Monitoring Recommendations

  • Configure application monitoring to alert on repeated crash events in oatpp-based services
  • Implement health check endpoints to detect service unavailability caused by crashes
  • Review system logs for core dump generation related to null pointer access
  • Set up dependency scanning to identify oatpp usage and version in your software inventory

How to Mitigate CVE-2026-1990

Immediate Actions Required

  • Audit your codebase to identify applications using oatpp versions up to 1.3.1
  • Implement input validation layers before data reaches ObjectWrapper constructors
  • Consider deploying application-level crash recovery mechanisms to minimize service disruption
  • Monitor the oatpp GitHub repository for official patches or updates

Patch Information

As of the last update, the oatpp project has not yet responded to the vulnerability report submitted through GitHub Issue #1080. No official patch is currently available. Users should monitor the oatpp repository for security updates and consider implementing the workarounds below until an official fix is released.

Workarounds

  • Implement defensive null checks in application code that interfaces with oatpp ObjectWrapper functionality
  • Add input validation layers to sanitize data before it reaches the vulnerable component
  • Deploy application-level exception handlers to gracefully handle potential crashes
  • Consider containerizing affected applications with automatic restart policies to minimize downtime
bash
# Configuration example
# Monitor oatpp-based application for crashes and auto-restart
# Example systemd service configuration for crash recovery

# /etc/systemd/system/oatpp-app.service
# [Service]
# Restart=always
# RestartSec=5
# WatchdogSec=30

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechOatpp

  • SeverityMEDIUM

  • CVSS Score4.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N/E:P/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
  • AvailabilityLow
  • CWE References
  • CWE-404
  • Technical References
  • GitHub Oatpp Repository

  • GitHub Oatpp Issue #1080

  • GitHub Oatpp Issue Detail

  • VulDB #344508

  • VulDB #344508

  • VulDB Submission #743387
  • Related CVEs
  • CVE-2025-6515: oatpp-mcp Auth Bypass 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