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

CVE-2025-28961: URL Shortener Object Injection Flaw

CVE-2025-28961 is a deserialization of untrusted data vulnerability in URL Shortener plugin by Md Yeasin Ul Haider that enables object injection attacks. This article covers technical details, affected versions, and mitigation.

Published: March 25, 2026

CVE-2025-28961 Overview

CVE-2025-28961 is a critical Deserialization of Untrusted Data vulnerability affecting the WordPress URL Shortener plugin by Md Yeasin Ul Haider. This insecure deserialization flaw allows unauthenticated attackers to inject arbitrary PHP objects through maliciously crafted serialized data, potentially leading to complete site compromise.

Critical Impact

This PHP Object Injection vulnerability can be exploited remotely without authentication, potentially allowing attackers to achieve remote code execution, access sensitive data, or completely compromise the affected WordPress installation.

Affected Products

  • URL Shortener WordPress Plugin versions up to and including 3.0.7
  • WordPress installations using the vulnerable plugin (also known as exact-links)

Discovery Timeline

  • 2025-07-16 - CVE-2025-28961 published to NVD
  • 2025-07-16 - Last updated in NVD database

Technical Details for CVE-2025-28961

Vulnerability Analysis

This vulnerability stems from improper handling of serialized data within the URL Shortener plugin. When the application processes user-supplied input containing serialized PHP objects without proper validation, attackers can inject malicious objects that execute arbitrary code upon deserialization.

PHP Object Injection vulnerabilities are particularly dangerous in WordPress environments due to the extensive use of magic methods (__wakeup(), __destruct(), __toString()) that automatically execute when objects are unserialized. If an attacker can chain these methods with existing classes in the WordPress ecosystem (known as "POP chains" or Property Oriented Programming), they can achieve remote code execution.

The vulnerability requires no authentication and can be exploited over the network, making it accessible to any remote attacker who can send requests to the vulnerable WordPress installation.

Root Cause

The root cause is classified as CWE-502: Deserialization of Untrusted Data. The URL Shortener plugin fails to properly sanitize or validate serialized input before passing it to PHP's unserialize() function. This allows attackers to craft malicious serialized payloads that, when deserialized, instantiate arbitrary objects with attacker-controlled properties.

Attack Vector

The attack vector is network-based and requires no user interaction or special privileges. An attacker can exploit this vulnerability by sending specially crafted HTTP requests containing malicious serialized PHP objects to the vulnerable endpoint. The exploitation typically follows this pattern:

  1. The attacker identifies an entry point where the plugin processes serialized data
  2. A malicious serialized payload is crafted, leveraging available PHP classes with exploitable magic methods
  3. The payload is submitted to the vulnerable endpoint
  4. Upon deserialization, the injected objects trigger a chain of method calls leading to code execution

For detailed technical analysis, refer to the Patchstack Vulnerability Report.

Detection Methods for CVE-2025-28961

Indicators of Compromise

  • Unusual serialized data patterns in HTTP request parameters or POST bodies, particularly containing unexpected class names
  • Web server logs showing requests with base64-encoded or URL-encoded serialized PHP objects
  • Unexpected file creations or modifications in WordPress directories
  • New or modified user accounts, especially those with administrator privileges
  • Unusual outbound network connections from the web server

Detection Strategies

  • Deploy Web Application Firewall (WAF) rules to detect and block serialized PHP object patterns in incoming requests
  • Monitor application logs for deserialization errors or unexpected class instantiation attempts
  • Implement file integrity monitoring on WordPress core files and plugin directories
  • Use security plugins that can detect and alert on suspicious plugin behavior
  • Enable detailed PHP error logging to capture deserialization warnings

Monitoring Recommendations

  • Configure SIEM alerts for patterns matching PHP serialized object syntax (O:, a:, s: prefixes) in web traffic
  • Monitor for new or modified PHP files in the wp-content/plugins/exact-links/ directory
  • Set up alerts for unusual database modifications, particularly to the wp_users and wp_options tables
  • Track failed authentication attempts following potential exploitation activity

How to Mitigate CVE-2025-28961

Immediate Actions Required

  • Immediately update the URL Shortener plugin to a patched version if available
  • If no patch is available, deactivate and remove the vulnerable plugin until a fix is released
  • Audit WordPress installations to identify all instances of the affected plugin
  • Review access logs for signs of exploitation attempts
  • Consider implementing additional web application firewall rules to block serialized object injection attempts

Patch Information

At the time of disclosure, organizations should check the official WordPress plugin repository and the Patchstack advisory for the latest patch information. Versions through 3.0.7 are confirmed vulnerable.

Workarounds

  • Disable or remove the URL Shortener plugin until a patched version is available
  • Implement WAF rules to filter requests containing serialized PHP objects
  • Restrict access to the WordPress admin area and plugin endpoints using IP whitelisting
  • Use a security plugin to add an additional layer of input validation
bash
# WordPress CLI command to deactivate the vulnerable plugin
wp plugin deactivate exact-links --path=/var/www/html/wordpress

# Verify plugin status
wp plugin list --path=/var/www/html/wordpress | grep exact-links

# Optional: Remove the plugin entirely if not required
wp plugin delete exact-links --path=/var/www/html/wordpress

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechUrl Shortener

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.11%

  • 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-502
  • Technical References
  • Patchstack Vulnerability Report
  • Related CVEs
  • CVE-2025-28959: URL Shortener SQL Injection 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