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

CVE-2025-15618: Perl StoredTransaction Info Disclosure Flaw

CVE-2025-15618 is an information disclosure vulnerability in Business::OnlinePayment::StoredTransaction for Perl caused by weak cryptographic key generation. This article covers technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2025-15618 Overview

CVE-2025-15618 is a critical insecure random number generation vulnerability affecting Business::OnlinePayment::StoredTransaction versions through 0.01 for Perl. The module uses a cryptographically weak method to generate secret keys by computing an MD5 hash of a single call to Perl's built-in rand() function. This key generation approach is fundamentally unsuitable for cryptographic purposes, particularly given that the key is intended for encrypting sensitive credit card transaction data.

Critical Impact

Attackers can potentially predict or brute-force the secret key used to encrypt credit card transaction data, leading to unauthorized access to sensitive payment information and potential financial fraud.

Affected Products

  • Business::OnlinePayment::StoredTransaction version 0.01 and earlier
  • Perl applications utilizing this module for payment transaction storage
  • E-commerce systems integrating this Perl module for credit card data handling

Discovery Timeline

  • 2026-03-31 - CVE-2025-15618 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2025-15618

Vulnerability Analysis

This vulnerability falls under CWE-338: Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG). The Business::OnlinePayment::StoredTransaction module generates encryption keys using a fundamentally flawed approach that combines two weak cryptographic primitives.

The module creates a secret key by taking the MD5 hash of a value produced by Perl's rand() function. This approach has multiple security deficiencies. First, Perl's rand() function is a linear congruential generator designed for general-purpose randomness, not cryptographic security. Its output is deterministic and predictable once the seed is known or can be inferred. Second, the entropy available from a single rand() call is severely limited, making the key space far smaller than what would be expected from a properly generated cryptographic key.

The vulnerability is exploitable over the network without authentication or user interaction, making it particularly dangerous for internet-facing payment systems. Since the weak key protects credit card transaction data, successful exploitation could result in significant confidentiality and integrity breaches.

Root Cause

The root cause is the improper use of a non-cryptographic PRNG (rand()) combined with MD5 hashing to generate encryption keys for sensitive financial data. The rand() function in Perl uses a predictable algorithm that was never designed for security purposes. When combined with the limited entropy of a single function call, the resulting key space becomes feasibly brute-forceable by attackers.

Additionally, MD5 is considered cryptographically broken and unsuitable for security-sensitive applications, compounding the weakness of the key generation process.

Attack Vector

An attacker could exploit this vulnerability through the following approach:

The vulnerability exists in the key generation routine within the Perl module. As documented in the MetaCPAN Module Source Code, the problematic code generates the secret key using rand() and MD5 hashing.

An attacker with access to encrypted transaction data could:

  1. Enumerate the limited key space resulting from the weak PRNG
  2. Attempt decryption with each candidate key
  3. Successfully recover plaintext credit card transaction data when the correct key is found

The attack requires no authentication or special privileges, as the weakness is inherent in how keys are generated and stored.

Detection Methods for CVE-2025-15618

Indicators of Compromise

  • Presence of Business::OnlinePayment::StoredTransaction version 0.01 or earlier in Perl module installations
  • Encrypted transaction files that may have been generated with weak cryptographic keys
  • Unusual access patterns to stored transaction data files

Detection Strategies

  • Audit Perl module dependencies using tools like cpanm --info or by examining META.json/META.yml files for Business-OnlinePayment-StoredTransaction installations
  • Review application code for imports or usage of Business::OnlinePayment::StoredTransaction
  • Implement file integrity monitoring on directories containing encrypted transaction data
  • Scan for the vulnerable module version across development, staging, and production environments

Monitoring Recommendations

  • Monitor access logs for unusual patterns of access to encrypted transaction storage locations
  • Set up alerts for any new installations or updates of the affected Perl module
  • Implement security scanning in CI/CD pipelines to detect usage of vulnerable module versions
  • Review payment processing logs for anomalies that could indicate data exfiltration attempts

How to Mitigate CVE-2025-15618

Immediate Actions Required

  • Identify all systems using Business::OnlinePayment::StoredTransaction and assess their exposure
  • Apply the official patch from MetaCPAN CVE-2025-15618 Patch
  • Re-encrypt any stored transaction data using properly generated cryptographic keys after patching
  • Conduct a security review to determine if stored data may have been compromised
  • Consider rotating or invalidating affected credit card data if exposure is suspected

Patch Information

The MetaCPAN security team has released a patch to address this vulnerability. The patch is available at the MetaCPAN CVE-2025-15618 Patch repository.

Organizations should apply this patch immediately to all affected installations. After patching, it is critical to regenerate encryption keys and re-encrypt any previously stored transaction data, as data encrypted with the weak key generation method remains vulnerable even after the code is patched.

For additional context and community discussion, refer to the Openwall OSS-Security Discussion.

Workarounds

  • If immediate patching is not possible, disable or isolate systems using the vulnerable module until remediation can be completed
  • Implement additional encryption layers at the application or infrastructure level using properly seeded cryptographic PRNGs
  • Consider migrating to alternative, well-audited payment processing libraries with proper cryptographic implementations
  • Restrict network access to affected systems to minimize exposure to potential attackers
  • Implement enhanced monitoring and logging on systems that cannot be immediately patched
bash
# Check for vulnerable module installation
perl -MBusiness::OnlinePayment::StoredTransaction -e 'print $Business::OnlinePayment::StoredTransaction::VERSION'

# Apply the security patch (download and review first)
curl -O https://security.metacpan.org/patches/B/Business-OnlinePayment-StoredTransaction/0.01/CVE-2025-15618-r1.patch
# Review the patch contents before applying
patch -p1 < CVE-2025-15618-r1.patch

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechBusiness Onlinepayment Storedtransaction

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-338
  • Technical References
  • MetaCPAN Module Source Code

  • MetaCPAN CVE-2025-15618 Patch

  • Openwall OSS-Security Discussion
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS 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