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-2024-36048

CVE-2024-36048: Qt Network Authorization Vulnerability

CVE-2024-36048 is an information disclosure vulnerability in Qt Network Authorization caused by weak PRNG seeding in QAbstractOAuth. This article covers the technical details, affected Qt versions, and mitigation steps.

Published: April 1, 2026

CVE-2024-36048 Overview

CVE-2024-36048 is an insecure random number generation vulnerability affecting QAbstractOAuth in Qt Network Authorization. The vulnerable component uses only the current time to seed the pseudorandom number generator (PRNG), resulting in predictable and guessable values. This weakness undermines the security of OAuth implementations that rely on Qt's network authorization module, potentially allowing attackers to predict security tokens and bypass authentication mechanisms.

Critical Impact

Attackers can predict OAuth tokens and security nonces by exploiting the time-based PRNG seeding, potentially leading to complete authentication bypass and unauthorized access to protected resources.

Affected Products

  • Qt versions before 5.15.17
  • Qt 6.x versions before 6.2.13
  • Qt 6.3.x through 6.5.x versions before 6.5.6
  • Qt 6.6.x through 6.7.x versions before 6.7.1
  • Fedora 39 and Fedora 40

Discovery Timeline

  • 2024-05-18 - CVE-2024-36048 published to NVD
  • 2025-11-04 - Last updated in NVD database

Technical Details for CVE-2024-36048

Vulnerability Analysis

The vulnerability exists in the QAbstractOAuth class within Qt's Network Authorization module. The core issue stems from improper initialization of the pseudorandom number generator (PRNG), which is classified as CWE-335 (Incorrect Usage of Seeds in Pseudo-Random Number Generator). When generating OAuth tokens, nonces, and other security-critical random values, the implementation seeds the PRNG using only the current system time rather than a cryptographically secure entropy source.

This design flaw means that if an attacker can determine or approximate when an OAuth transaction was initiated, they can potentially reproduce the same random sequence. OAuth protocols rely heavily on unpredictable random values for state parameters, nonces, and other anti-forgery mechanisms. When these values become predictable, the security guarantees of the entire OAuth flow are compromised.

Root Cause

The root cause is the use of time-only seeding for the PRNG in QAbstractOAuth. Time-based seeds provide extremely limited entropy—often measured in seconds or milliseconds—which is insufficient for cryptographic applications. An attacker with knowledge of the approximate time window during which a token was generated can enumerate possible seed values and regenerate the random sequence used to create OAuth credentials.

Attack Vector

The vulnerability is exploitable over the network without requiring authentication or user interaction. An attacker targeting this vulnerability would:

  1. Identify an application using a vulnerable Qt version for OAuth authentication
  2. Determine or estimate the time window when the target initiated an OAuth transaction
  3. Enumerate possible PRNG seed values based on the suspected timestamp
  4. Regenerate the random values used in the OAuth flow (nonces, state parameters, etc.)
  5. Use the predicted values to forge authentication requests or hijack OAuth sessions

The attack is particularly effective against high-value OAuth integrations where session tokens or access tokens can be predicted, enabling unauthorized API access or account takeover.

Detection Methods for CVE-2024-36048

Indicators of Compromise

  • Unusual patterns of OAuth authentication failures followed by successful authentications from different sources
  • Multiple OAuth requests with identical or sequential nonce values
  • Authentication tokens appearing in logs that correlate with predictable time-based patterns
  • Suspicious access to resources immediately following legitimate OAuth flows from different IP addresses

Detection Strategies

  • Implement monitoring for OAuth token reuse or collision detection in authentication logs
  • Deploy runtime application security testing (RAST) to identify predictable random value generation
  • Use static analysis tools to identify Qt applications using vulnerable qtnetworkauth module versions
  • Monitor for anomalous authentication patterns where tokens from one session appear in requests from different network origins

Monitoring Recommendations

  • Enable verbose logging for OAuth transactions to capture nonce and state parameter values for analysis
  • Implement server-side validation that detects and alerts on duplicate or predictable OAuth state parameters
  • Deploy network-level monitoring to detect potential token prediction attacks targeting OAuth endpoints
  • Establish baseline metrics for OAuth failure rates and alert on significant deviations that may indicate attack attempts

How to Mitigate CVE-2024-36048

Immediate Actions Required

  • Inventory all applications using Qt Network Authorization module and identify vulnerable versions
  • Prioritize updating Qt to patched versions: 5.15.17+, 6.2.13+, 6.5.6+, or 6.7.1+
  • Review OAuth implementations for additional security controls that may mitigate predictable random values
  • Consider implementing additional entropy sources at the application layer as a defense-in-depth measure

Patch Information

Qt has released patches to address this vulnerability. The fixes are available in the official Qt code repository:

  • Qt Project Code Review #560317
  • Qt Project Code Review #560368

Fedora users should apply available security updates for their respective distributions. Check the Fedora Package Announcements for specific package updates.

Upgrade to the following fixed versions:

  • Qt 5.x: Update to version 5.15.17 or later
  • Qt 6.2.x: Update to version 6.2.13 or later
  • Qt 6.3.x through 6.5.x: Update to version 6.5.6 or later
  • Qt 6.6.x through 6.7.x: Update to version 6.7.1 or later

Workarounds

  • If immediate patching is not possible, implement server-side nonce validation with strict time-window enforcement
  • Add additional application-layer entropy to OAuth token generation processes
  • Consider implementing rate limiting on OAuth endpoints to slow down potential token prediction attacks
  • Deploy Web Application Firewalls (WAF) with rules to detect suspicious OAuth request patterns
bash
# Check installed Qt version on Linux systems
qmake --version

# Verify qtnetworkauth module version
pkg-config --modversion Qt5NetworkAuth 2>/dev/null || \
pkg-config --modversion Qt6NetworkAuth 2>/dev/null

# Update Qt packages on Fedora
sudo dnf update qt5-qtnetworkauth qt6-qtnetworkauth

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechQt

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.48%

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

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement
  • Vendor Resources
  • Qt Project Code Review #560317

  • Qt Project Code Review #560368
  • Related CVEs
  • CVE-2024-39936: Qt HTTP2 Privilege Escalation Vulnerability

  • CVE-2024-25580: Qt Buffer Overflow Vulnerability

  • CVE-2025-23050: Qt QLowEnergyController Buffer Overflow

  • CVE-2025-6338: Qt Network Schannel DoS 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