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

CVE-2026-46720: Net::Statsd::Tiny Metric Injection Flaw

CVE-2026-46720 is a metric injection vulnerability in Net::Statsd::Tiny for Perl allowing attackers to inject additional statsd metrics through unchecked newlines, colons, or pipes in metric names and values.

Published: May 21, 2026

CVE-2026-46720 Overview

CVE-2026-46720 affects Net::Statsd::Tiny versions before 0.3.8 for Perl. The module failed to validate metric names and set values for newline, colon (:), and pipe (|) characters. Applications generating statsd metrics from untrusted input could allow attackers to inject arbitrary additional metrics into the statsd stream. The flaw maps to CWE-93: Improper Neutralization of CRLF Sequences.

Critical Impact

Attackers can inject arbitrary statsd metrics through untrusted inputs passed to Net::Statsd::Tiny, corrupting monitoring telemetry and potentially masking malicious activity.

Affected Products

  • Net::Statsd::Tiny Perl module versions prior to 0.3.8
  • Perl applications that pass untrusted input as statsd metric names or set values
  • Monitoring pipelines consuming statsd output from vulnerable producers

Discovery Timeline

  • 2026-05-17 - CVE-2026-46720 published to NVD
  • 2026-05-18 - Last updated in NVD database

Technical Details for CVE-2026-46720

Vulnerability Analysis

The statsd line protocol uses specific delimiter characters to separate metric components. A typical statsd packet follows the format metric.name:value|type, with newlines separating multiple metrics in a single payload. Net::Statsd::Tiny constructed these packets by concatenating caller-supplied names and values without rejecting or escaping the protocol's reserved characters.

When a Perl application forwards user-controlled data — such as request paths, usernames, or tag values — into a metric name or set value, an attacker can embed \n, :, or | characters. The resulting payload contains additional, attacker-defined statsd lines that the receiving daemon parses as legitimate metrics.

Root Cause

The module lacked input validation on metric names and set values before serialization. Characters below ASCII 32 (including \r and \n), the colon, and the pipe were treated as ordinary data. This is a classic CRLF-style injection adapted to the statsd protocol [CWE-93].

Attack Vector

The attack requires no authentication and is network-exploitable through any application surface that feeds untrusted strings into the vulnerable API. The attacker influences metric content but does not need direct access to the statsd daemon. Successful injection corrupts monitoring dashboards, triggers false alerts, suppresses real signals, or pollutes billing and capacity data derived from metrics.

text
[Security]
- Metrics names and values are now validated to ensure they do not contain characters below ASCII 32 (including newlines),
  colon (":") or pipe ("|") characters that might allow metric injection. CVE-2026-46720

Source: GitHub Commit Patch

The patch adds explicit validation rejecting control characters, colons, and pipes in metric names and set values, closing the injection channel.

Detection Methods for CVE-2026-46720

Indicators of Compromise

  • Statsd traffic containing unexpected metric names that mirror application input fields
  • Sudden appearance of metrics with embedded \n, :, or | characters in source logs
  • Spikes or anomalies in metric counts that do not correlate with traffic volume
  • Perl dependency manifests pinning Net::Statsd::Tiny to versions below 0.3.8

Detection Strategies

  • Inventory all Perl projects and CPAN dependencies for Net::Statsd::Tiny and flag versions earlier than 0.3.8
  • Inspect statsd UDP/TCP captures for payloads where metric names contain reserved protocol characters
  • Correlate metric anomalies with web request logs to identify untrusted inputs reaching the metrics layer

Monitoring Recommendations

  • Enable alerting on the rate of new, previously unseen metric names emitted by each service
  • Log and review any rejected metrics after upgrading, as rejections may indicate prior injection attempts
  • Add software composition analysis (SCA) checks to CI pipelines to fail builds using vulnerable module versions

How to Mitigate CVE-2026-46720

Immediate Actions Required

  • Upgrade Net::Statsd::Tiny to version 0.3.8 or later across all Perl applications
  • Audit application code paths that pass user input into metric names or set values
  • Review historical statsd data for evidence of injected metrics and remove polluted series

Patch Information

The fix is committed in Net-Statsd-Tiny commit 06f814f5 and released in version 0.3.8. See the MetaCPAN Release Changes for full details. A related issue is tracked under CVE-2026-46719.

Workarounds

  • Sanitize all user-controlled strings before passing them to metric APIs by stripping characters below ASCII 32, :, and |
  • Restrict metric name generation to a server-controlled allowlist of identifiers
  • Place a filtering proxy between application hosts and the statsd daemon to drop malformed lines
bash
# Upgrade Net::Statsd::Tiny via cpanm
cpanm Net::Statsd::Tiny@0.3.8

# Or pin in cpanfile
echo 'requires "Net::Statsd::Tiny" => "0.3.8";' >> cpanfile
cpanm --installdeps .

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechPerl

  • SeverityHIGH

  • CVSS Score8.2

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-93
  • Technical References
  • GitHub Commit Patch

  • MetaCPAN Release Changes

  • CVE.org Record CVE-2026-46719
  • Related CVEs
  • CVE-2026-8788: Net::Statsd::Lite Metric Injection Flaw

  • CVE-2026-46719: Net::Statsd::Lite Metric Injection Flaw

  • CVE-2026-4176: Perl Compress::Raw::Zlib Vulnerability

  • CVE-2024-57854: Net::NSCA::Client Weak RNG 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