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

CVE-2025-22376: Net::OAuth Perl Weak Nonce Vulnerability

CVE-2025-22376 is a cryptographic weakness in Net::OAuth for Perl where default nonces use weak rand() function instead of secure random generation. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-22376 Overview

CVE-2025-22376 is an Insecure Random Number Generation vulnerability affecting the Net::OAuth package for Perl. In Net::OAuth::Client, versions before 0.29 use Perl's built-in rand() function to generate a 32-bit integer for the OAuth nonce value. This approach is cryptographically weak, as rand() is a pseudo-random number generator (PRNG) not designed for security-sensitive operations.

OAuth nonces are critical security tokens designed to prevent replay attacks by ensuring each request is unique. Using a predictable random number generator undermines this protection, potentially allowing attackers to predict nonce values and replay authenticated requests.

Critical Impact

Attackers may predict OAuth nonce values, enabling replay attacks against OAuth-protected APIs and services using the vulnerable Net::OAuth package.

Affected Products

  • Net::OAuth package for Perl versions prior to 0.29
  • Applications using Net::OAuth::Client for OAuth authentication
  • Systems implementing OAuth 1.0/1.0a using the vulnerable library

Discovery Timeline

  • 2025-01-03 - CVE-2025-22376 published to NVD
  • 2025-01-21 - Last updated in NVD database

Technical Details for CVE-2025-22376

Vulnerability Analysis

The vulnerability stems from the use of Perl's rand() function for generating OAuth nonces. According to IETF RFC 5849 Section 3.3, the nonce is a random string uniquely generated by the client to allow the server to verify that a request has never been made before. The RFC further specifies in Section 4.10 that nonces should be unpredictable to prevent attackers from calculating future nonce values.

The rand() function in Perl is a linear congruential generator (LCG) designed for general-purpose randomness, not cryptographic security. Its output is deterministic given the seed, and with only 32 bits of entropy, the nonce space is limited to approximately 4.3 billion possible values—easily brute-forceable with modern computing resources.

Root Cause

The root cause is classified under CWE-338 (Use of Cryptographically Weak Pseudo-Random Number Generator). The vulnerable code in Net::OAuth::Client at line 260 generates the nonce using int(rand(2**32)), which produces predictable values that fail to meet cryptographic randomness requirements for OAuth security tokens.

Attack Vector

This vulnerability is exploitable over the network without authentication. An attacker could:

  1. Observe OAuth requests to identify the nonce pattern
  2. Predict future nonce values using the weak PRNG characteristics
  3. Craft replay attacks by reusing captured OAuth signatures with predicted nonces
  4. Bypass OAuth security controls to perform unauthorized API operations

The fix introduced in version 0.29 replaces the weak rand() call with cryptographically secure randomness from Crypt::URandom:

text
         'Class::Data::Inheritable' => '0.06',
         'Encode' => '2.35',
         'LWP::UserAgent' => '1',
+        'Crypt::URandom' => '0.37',
     },
     configure_requires => {
         'Module::Build'         => '0.4234',

Source: GitHub Net-OAuth Commit 2aa25e

Detection Methods for CVE-2025-22376

Indicators of Compromise

  • Repeated OAuth authentication attempts with sequential or predictable nonce values in access logs
  • Unusual patterns of OAuth token usage indicating potential replay attacks
  • Multiple successful API calls with similar timestamps and nonce collision patterns

Detection Strategies

  • Audit Perl dependencies using cpanm --showdeps Net::OAuth to identify vulnerable versions prior to 0.29
  • Implement server-side nonce tracking to detect duplicate or sequential nonce submissions
  • Review application logs for OAuth signature validation failures that may indicate replay attempts
  • Use software composition analysis (SCA) tools to flag vulnerable Net::OAuth installations

Monitoring Recommendations

  • Enable detailed OAuth request logging to capture nonce values for pattern analysis
  • Configure alerts for OAuth authentication anomalies such as rapid request rates or nonce collisions
  • Monitor for the presence of Crypt::URandom dependency as an indicator of the patched version

How to Mitigate CVE-2025-22376

Immediate Actions Required

  • Upgrade Net::OAuth to version 0.29 or later immediately
  • Audit all applications using Net::OAuth::Client for OAuth authentication
  • Review recent OAuth logs for signs of replay attacks against affected systems
  • Consider rotating OAuth credentials for applications that were running vulnerable versions

Patch Information

The security patch is available in Net::OAuth version 0.29. The fix introduces Crypt::URandom as a dependency to provide cryptographically secure random number generation for nonce creation. The changelog documents the security improvement:

text
       [Security]
       - Net::OAuth::Client uses a better source of randomness for generating the nonce

        [Bug Fixes]
        - Removed unnecessary prerequisite RT#69810 GH#4 GH#6
        - Fix broken dependency for URI::Escape GH#4 (thanks oiami)

Source: GitHub Net-OAuth Commit 2aa25e

Workarounds

  • Implement server-side nonce validation with strict uniqueness checking and short expiration windows
  • Add rate limiting on OAuth endpoints to reduce the effectiveness of brute-force nonce prediction
  • Consider implementing additional request signing mechanisms beyond standard OAuth 1.0 nonces
bash
# Upgrade Net::OAuth to patched version
cpanm Net::OAuth@0.29

# Verify installed version
perl -MNet::OAuth -e 'print $Net::OAuth::VERSION'

# Check for Crypt::URandom dependency (indicates patched version)
perl -MCrypt::URandom -e 'print "Crypt::URandom available\n"'

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechNet Oauth

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.53%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-338
  • Technical References
  • MetaCPAN Net::OAuth Client Code

  • MetaCPAN Net::OAuth Version Changes

  • IETF RFC 5849 Section 3.3

  • IETF RFC 5849 Section 4.10

  • GitHub Net-OAuth Commit 2aa25e

  • MetaCPAN Net::OAuth Diff Report

  • Vulnarium Blog Post January 2025
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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