A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-8612

CVE-2026-8612: WWW::Mechanize::Cached RCE Vulnerability

CVE-2026-8612 is a remote code execution flaw in WWW::Mechanize::Cached for Perl allowing local attackers to inject malicious cached responses. This post covers the technical details, affected versions, and mitigation.

Published: May 21, 2026

CVE-2026-8612 Overview

CVE-2026-8612 affects WWW::Mechanize::Cached versions before 2.00 for Perl. The module deserializes cached HTTP responses from a world-writable on-disk cache, allowing local response forgery and potential code execution. Without an explicit cache backend, the module constructs a default Cache::FileCache under /tmp/FileCache and inherits the documented directory_umask of 000. The result is a cache root and subdirectories created with mode 0777 and no sticky bit. Local attackers can substitute frozen HTTP::Response blobs that flow through Storable::thaw on the next cache hit. The flaw is categorized as insecure deserialization [CWE-502].

Critical Impact

A local attacker with write access to /tmp/FileCache can forge cached HTTP responses and trigger arbitrary code execution in any victim process that loads classes with side-effectful STORABLE_thaw, DESTROY, or overload hooks.

Affected Products

  • WWW::Mechanize::Cached Perl module versions prior to 2.00
  • Perl applications using the default Cache::FileCache backend under /tmp/FileCache
  • Downstream tools and scripts depending on WWW::Mechanize::Cached without an explicit cache backend

Discovery Timeline

  • 2026-05-15 - CVE-2026-8612 published to NVD
  • 2026-05-18 - Last updated in NVD database

Technical Details for CVE-2026-8612

Vulnerability Analysis

The vulnerability stems from insecure deserialization of attacker-controlled cache files. WWW::Mechanize::Cached stores HTTP response objects on disk using Storable serialization. On a cache hit, the module reads the serialized blob and passes it directly to Storable::thaw to reconstruct the original HTTP::Response object.

Storable::thaw is well-known as an unsafe deserializer when the input is not trusted. The frozen stream can reference any Perl class available in the victim process. Classes that define STORABLE_thaw, DESTROY, or overload hooks execute their own code as part of object reconstruction or garbage collection. An attacker who controls the serialized bytes therefore controls which classes are instantiated and which hook routines run.

Root Cause

The root cause is twofold. First, the module uses Storable::thaw on untrusted on-disk data without integrity validation such as an HMAC or signature. Second, the default cache directory is created with permissive permissions. Cache::FileCache documents a directory_umask of 000, and WWW::Mechanize::Cached does not override it. As a result, the cache root /tmp/FileCache and its subdirectories are created with mode 0777 and no sticky bit. Cache entries are named by sha1_hex of the request URL, which is predictable to any local user.

Attack Vector

A local attacker with shell access to the same host enumerates predictable cache filenames by computing sha1_hex of URLs the victim is expected to fetch. The attacker then writes a malicious frozen HTTP::Response blob into the corresponding cache file inside the world-writable /tmp/FileCache tree. When the victim process next calls get() for that URL, WWW::Mechanize::Cached reads the attacker file and passes its contents to Storable::thaw. Deserialization triggers any side-effectful hooks in classes already loaded by the victim process, escalating local file write into arbitrary code execution under the victim's user context. See the OpenWall OSS-Security Discussion for additional technical detail.

Detection Methods for CVE-2026-8612

Indicators of Compromise

  • Existence of /tmp/FileCache with directory mode 0777 and no sticky bit
  • Files inside /tmp/FileCache owned by a user different from the process invoking WWW::Mechanize::Cached
  • Unexpected child processes or outbound connections spawned by Perl scripts that call WWW::Mechanize::Cached->get()
  • Cache files with recent mtime changes that do not correlate with the victim user's HTTP activity

Detection Strategies

  • Audit installed CPAN distributions for WWW-Mechanize-Cached versions below 2.00
  • Inspect Perl code for WWW::Mechanize::Cached->new() calls that omit an explicit cache backend
  • Alert on writes to /tmp/FileCache originating from accounts other than the legitimate consumer of the cache
  • Flag any invocation of Storable::thaw against files in world-writable directories

Monitoring Recommendations

  • Enable file integrity monitoring on /tmp/FileCache and similar shared cache locations
  • Collect Linux audit logs for open and write events on the cache tree, correlated by UID
  • Track process telemetry for Perl interpreters that spawn shells or network connections after cache reads

How to Mitigate CVE-2026-8612

Immediate Actions Required

  • Upgrade WWW::Mechanize::Cached to version 2.00 or later from CPAN
  • Remove any existing /tmp/FileCache directory and recreate the cache under a user-private path with mode 0700
  • Audit all Perl code paths that instantiate WWW::Mechanize::Cached and supply an explicit cache backend with a restrictive directory_umask
  • Treat any historical cache contents as untrusted and purge them before restarting affected services

Patch Information

The fix landed in WWW-Mechanize-Cached 2.00. Review the GitHub Patch for Commit and GitHub Pull Request #36 for the source-level changes. Release notes are available at the MetaCPAN Changes for Release.

Workarounds

  • Pass an explicit cache object to the constructor with cache_root set to a user-owned directory and directory_umask set to 077
  • Disable disk caching entirely for untrusted multi-user hosts and rely on in-memory caching
  • Apply filesystem ACLs that restrict write access to the cache directory to a single service account
  • Run Perl jobs that use WWW::Mechanize::Cached inside dedicated containers or chroots that do not share /tmp with other users
bash
# Configuration example: instantiate with a private cache directory
perl -e '
  use WWW::Mechanize::Cached;
  use Cache::FileCache;
  my $cache = Cache::FileCache->new({
      namespace       => "mech",
      cache_root      => "$ENV{HOME}/.cache/mech",
      directory_umask => 077,
  });
  my $mech = WWW::Mechanize::Cached->new( cache => $cache );
'

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechOalders Www

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-502
  • Technical References
  • MetaCPAN Changes for Release

  • OpenWall OSS-Security Discussion
  • Vendor Resources
  • GitHub Patch for Commit

  • GitHub Pull Request #36
  • Latest CVEs
  • CVE-2026-9813: FlowIntel SSRF Vulnerability

  • CVE-2026-4377: D-Link DWR-X1820 Auth Bypass Vulnerability

  • CVE-2026-47074: ex_aws_sns Auth Bypass Vulnerability

  • CVE-2026-46241: Linux Kernel Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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