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-2025-3360

CVE-2025-3360: GLib Buffer Overflow Vulnerability

CVE-2025-3360 is a buffer overflow flaw in GLib caused by integer overflow when parsing invalid ISO 8601 timestamps. This article covers the technical details, affected versions, potential impact, and mitigation strategies.

Updated: January 22, 2026

CVE-2025-3360 Overview

A vulnerability has been identified in GLib affecting the g_date_time_new_from_iso8601() function. When parsing a long invalid ISO 8601 timestamp, an integer overflow occurs which subsequently leads to a buffer under-read condition. This flaw is categorized under CWE-190 (Integer Overflow or Wraparound).

Critical Impact

Applications utilizing GLib's ISO 8601 timestamp parsing functionality may experience denial of service conditions when processing maliciously crafted timestamp strings.

Affected Products

  • GLib (all versions using vulnerable g_date_time_new_from_iso8601() implementation)
  • Applications and libraries dependent on GLib's date/time parsing functionality
  • Linux distributions including Debian and Red Hat based systems

Discovery Timeline

  • 2025-04-07 - CVE CVE-2025-3360 published to NVD
  • 2025-04-14 - Last updated in NVD database

Technical Details for CVE-2025-3360

Vulnerability Analysis

The vulnerability exists within GLib's ISO 8601 timestamp parsing implementation, specifically in the g_date_time_new_from_iso8601() function. When this function receives an exceptionally long invalid ISO 8601 formatted timestamp string, it fails to properly validate the input length before performing arithmetic operations. This leads to an integer overflow condition where the calculated buffer position wraps around to an unexpected value, causing the subsequent read operation to access memory outside the intended buffer boundaries (buffer under-read).

The network attack vector indicates that applications accepting timestamp data from remote sources are potentially vulnerable. However, the high attack complexity required to trigger this condition reduces the practical exploitability of this flaw.

Root Cause

The root cause is an integer overflow vulnerability (CWE-190) in the timestamp parsing logic. The g_date_time_new_from_iso8601() function does not implement adequate bounds checking on input string length before performing size calculations. When the input exceeds expected boundaries, arithmetic operations on size values overflow, resulting in incorrect memory addressing and subsequent buffer under-read operations.

Attack Vector

The attack vector is network-based, requiring an attacker to supply a specially crafted, excessively long ISO 8601 timestamp string to an application using the vulnerable GLib function. The attack requires:

  1. An application that accepts ISO 8601 timestamp input from network sources
  2. The application passes this input to g_date_time_new_from_iso8601() without proper length validation
  3. A malformed timestamp string of sufficient length to trigger the integer overflow
  4. The resulting buffer under-read may cause the application to crash or potentially leak memory contents

Due to the high complexity required to successfully exploit this vulnerability and the limited impact (availability only), practical exploitation in real-world scenarios is challenging.

Detection Methods for CVE-2025-3360

Indicators of Compromise

  • Unexpected application crashes in processes utilizing GLib's date/time parsing functions
  • Core dumps or error logs indicating memory access violations in g_date_time_new_from_iso8601() or related GLib functions
  • Abnormally long timestamp strings in application input logs

Detection Strategies

  • Monitor application logs for segmentation faults or memory access errors related to GLib functions
  • Implement input validation to detect and reject excessively long timestamp strings before they reach GLib parsing functions
  • Deploy runtime memory protection tools that can detect buffer under-read attempts
  • Use static analysis tools to identify code paths that pass untrusted input to g_date_time_new_from_iso8601()

Monitoring Recommendations

  • Enable core dump collection and analysis for applications using GLib to identify exploitation attempts
  • Monitor system logs for repeated crashes in applications that process timestamp data from external sources
  • Implement alerting for applications that receive unusually large timestamp input values
  • Track GLib-related security advisories from Red Hat and Debian for updated guidance

How to Mitigate CVE-2025-3360

Immediate Actions Required

  • Update GLib to the latest patched version available from your distribution's package repositories
  • Review applications that accept timestamp input from untrusted sources and implement input length validation
  • Consider implementing a maximum length check on ISO 8601 timestamp strings before passing them to GLib functions
  • Monitor the Red Hat CVE Advisory and Red Hat Bug Report for patch availability

Patch Information

Security patches are being tracked by major Linux distributions. Consult the following resources for the latest patch information:

  • Red Hat CVE Advisory - Official Red Hat security advisory
  • Red Hat Bug Report - Bug tracking for this vulnerability
  • Debian LTS Announcement - Debian security update information

Apply updates through your distribution's standard package management system once patches become available.

Workarounds

  • Implement application-level input validation to restrict ISO 8601 timestamp string length to reasonable bounds (e.g., 64 characters maximum for standard timestamps)
  • Use alternative date/time parsing libraries that are not affected by this vulnerability if immediate patching is not possible
  • Employ memory-safe compilation options (ASLR, stack canaries) to reduce exploitation impact
  • Isolate applications processing untrusted timestamp data in sandboxed environments
bash
# Example input validation before GLib parsing
# Add to application code or input processing layer
MAX_TIMESTAMP_LENGTH=64
if [ ${#timestamp_input} -gt $MAX_TIMESTAMP_LENGTH ]; then
    echo "Error: Invalid timestamp length"
    exit 1
fi

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechGlib

  • SeverityLOW

  • CVSS Score3.7

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-190
  • Technical References
  • Red Hat CVE Advisory

  • Red Hat Bug Report

  • Debian LTS Announcement
  • Related CVEs
  • CVE-2026-1489: GLib Buffer Overflow Vulnerability

  • CVE-2026-1485: Glib Buffer Overflow Vulnerability

  • CVE-2026-1484: GLib Base64 Buffer Overflow Vulnerability

  • CVE-2025-4373: GLib 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