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-2026-4979

CVE-2026-4979: UsersWP Plugin SSRF Vulnerability

CVE-2026-4979 is a blind Server-Side Request Forgery flaw in the UsersWP plugin for WordPress that enables authenticated attackers to make arbitrary HTTP requests. This post covers technical details, affected versions, and mitigation.

Published: April 17, 2026

CVE-2026-4979 Overview

The UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WordPress is vulnerable to blind Server-Side Request Forgery (SSRF) in all versions up to and including 1.2.58. This vulnerability exists due to insufficient URL origin validation in the process_image_crop() method when processing avatar and banner image crop operations. The function accepts a user-controlled URL via the uwp_crop POST parameter and only validates it using esc_url() for sanitization and wp_check_filetype() for extension verification, without enforcing that the URL references a local uploads file.

Critical Impact

Authenticated attackers with subscriber-level access and above can coerce the WordPress server into making arbitrary HTTP requests to attacker-controlled or internal network destinations, enabling internal network scanning and potential access to sensitive services.

Affected Products

  • UsersWP WordPress Plugin versions up to and including 1.2.58
  • WordPress sites using vulnerable UsersWP plugin versions
  • Internal network services accessible from the WordPress server

Discovery Timeline

  • 2026-04-11 - CVE CVE-2026-4979 published to NVD
  • 2026-04-13 - Last updated in NVD database

Technical Details for CVE-2026-4979

Vulnerability Analysis

This blind SSRF vulnerability resides in the avatar and banner image cropping functionality of the UsersWP plugin. When a user initiates an image crop operation, the process_image_crop() method in class-forms.php accepts a URL through the uwp_crop POST parameter. The vulnerability arises because the validation logic only performs basic sanitization using WordPress's esc_url() function and verifies the file extension via wp_check_filetype(), but fails to enforce that the provided URL points to a legitimate local uploads file.

The URL is subsequently passed to the uwp_resizeThumbnailImage() function located in misc.php, which utilizes PHP's native image processing functions including getimagesize() and imagecreatefrom*() functions. These PHP functions support URL wrappers and will perform outbound HTTP requests when provided with a remote URL, allowing attackers to leverage the server as a proxy for network requests.

Root Cause

The root cause of this vulnerability is missing validation to ensure the URL provided in the uwp_crop parameter references a local file within the WordPress uploads directory. While esc_url() sanitizes the URL and wp_check_filetype() validates the file extension, neither function verifies the URL origin or prevents external URLs from being processed. The PHP image functions that subsequently process this URL treat remote URLs as valid input and will fetch the resource over HTTP, effectively turning the WordPress server into an open proxy.

Attack Vector

This is a network-based attack that requires authentication with at least subscriber-level privileges. An attacker can exploit this vulnerability by:

  1. Authenticating to the WordPress site with a subscriber or higher-level account
  2. Initiating an image crop operation (avatar or banner upload)
  3. Manipulating the uwp_crop POST parameter to contain an attacker-controlled external URL or an internal network address
  4. The server processes the request and makes an outbound HTTP connection to the specified URL
  5. By analyzing response times, error messages, or other side-channel information, the attacker can map internal network topology and identify accessible services

The vulnerability enables blind SSRF attacks, meaning the attacker cannot directly see the response content but can infer information about internal systems through timing analysis and error conditions.

Detection Methods for CVE-2026-4979

Indicators of Compromise

  • Unusual outbound HTTP requests from the WordPress server to internal IP ranges (10.x.x.x, 172.16.x.x, 192.168.x.x)
  • Outbound requests to cloud metadata endpoints such as 169.254.169.254
  • POST requests to UsersWP crop endpoints containing external URLs in the uwp_crop parameter
  • Abnormal network scanning patterns originating from the web server

Detection Strategies

  • Monitor web application firewall (WAF) logs for POST requests to /wp-admin/admin-ajax.php with actions related to UsersWP image cropping containing external URLs
  • Implement egress filtering rules and alert on attempts by the WordPress server to connect to internal network ranges or cloud metadata services
  • Review PHP error logs for failed getimagesize() or imagecreatefrom*() calls with suspicious URLs
  • Deploy network intrusion detection rules to identify SSRF patterns in HTTP traffic

Monitoring Recommendations

  • Enable detailed logging for outbound HTTP connections from web servers
  • Configure alerts for connections to RFC1918 private address spaces from public-facing web applications
  • Monitor for port scanning behavior originating from WordPress server IP addresses
  • Implement DNS query logging to detect requests for internal hostnames from web servers

How to Mitigate CVE-2026-4979

Immediate Actions Required

  • Update UsersWP plugin to a version newer than 1.2.58 that contains the security fix
  • Restrict subscriber-level user registrations until the patch is applied if not required for site functionality
  • Implement WAF rules to block external URLs in the uwp_crop parameter
  • Review user accounts for suspicious subscriber-level accounts that may have been created for exploitation

Patch Information

A security patch has been released to address this vulnerability. The fix can be reviewed in the GitHub commit ca0c81b9c76a26c5ac78a8f3604cf9122a7a4aa1. Site administrators should update the UsersWP plugin through the WordPress plugin repository to obtain the patched version. Additional technical analysis is available from the Wordfence vulnerability database.

Workarounds

  • Implement egress firewall rules on the WordPress server to block outbound connections to internal network ranges and cloud metadata endpoints
  • Use a web application firewall to inspect and block requests containing external URLs in image crop parameters
  • Disable user avatar and banner upload functionality temporarily by modifying UsersWP settings
  • Consider restricting user registration or requiring administrator approval for new subscriber accounts until the patch is applied
bash
# Example iptables rules to block SSRF to internal networks
iptables -A OUTPUT -m owner --uid-owner www-data -d 10.0.0.0/8 -j DROP
iptables -A OUTPUT -m owner --uid-owner www-data -d 172.16.0.0/12 -j DROP
iptables -A OUTPUT -m owner --uid-owner www-data -d 192.168.0.0/16 -j DROP
iptables -A OUTPUT -m owner --uid-owner www-data -d 169.254.169.254 -j DROP

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score5.0

  • EPSS Probability0.03%

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

  • WordPress Plugin File Reference

  • WordPress Plugin File Reference

  • WordPress Plugin File Reference

  • WordPress Plugin File Reference

  • Wordfence Vulnerability Analysis
  • Related CVEs
  • CVE-2026-0688: WordPress Webmention Plugin SSRF Flaw

  • CVE-2026-0686: WordPress Webmention Plugin SSRF Vulnerability

  • CVE-2026-3881: Performance Monitor WordPress SSRF Flaw

  • CVE-2025-12886: Oxygen Theme for WordPress SSRF 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