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
    • 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-2022-50956

CVE-2022-50956: WordPress Plugin Path Traversal Flaw

CVE-2022-50956 is a path traversal vulnerability in WordPress plugin amministrazione-aperta 3.7.3 that allows unauthenticated attackers to read arbitrary files. This post covers technical details, impact, and mitigation.

Published: May 18, 2026

CVE-2022-50956 Overview

CVE-2022-50956 is a local file read vulnerability in the WordPress plugin amministrazione-aperta version 3.7.3. The flaw resides in dispatcher.php, where the open GET parameter is passed to file inclusion logic without adequate validation. Unauthenticated attackers can supply arbitrary file paths through this parameter to read any file accessible to the web server process. The issue is classified under CWE-22 (Improper Limitation of a Pathname to a Restricted Directory). Public exploit code is documented in Exploit-DB #50838 and the VulnCheck Advisory.

Critical Impact

Unauthenticated attackers can read arbitrary files from the WordPress host, exposing configuration files such as wp-config.php, database credentials, and other sensitive server-side data.

Affected Products

  • WordPress Plugin amministrazione-aperta version 3.7.3
  • WordPress installations with the vulnerable plugin enabled
  • Web servers hosting affected plugin deployments

Discovery Timeline

  • 2026-05-10 - CVE-2022-50956 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2022-50956

Vulnerability Analysis

The vulnerability stems from how dispatcher.php in the amministrazione-aperta plugin processes the open GET parameter. The script accepts user-supplied paths and passes them to file inclusion or read operations without sanitization. Attackers can traverse the filesystem using sequences such as ../ to escape the plugin directory. Because the endpoint does not require authentication, any remote user reaching the WordPress instance can issue the request. The plugin supports administrative document handling, which is why file access primitives exist in the codebase, but they are exposed without access controls.

Root Cause

The root cause is improper input validation on a path parameter, mapped to [CWE-22]. The open parameter is treated as a trusted path argument and concatenated into a file read operation. No allow-listing, canonicalization, or directory boundary check is applied before the read executes.

Attack Vector

An attacker sends an HTTP GET request to the plugin's dispatcher.php endpoint with the open parameter set to a traversal sequence pointing at a target file. The web server returns the contents of any file readable by its process user. Typical targets include wp-config.php, /etc/passwd, application logs, and backup files. The attack requires no credentials and no user interaction.

The vulnerability is described in prose only; refer to Exploit-DB #50838 for the published proof-of-concept request format.

Detection Methods for CVE-2022-50956

Indicators of Compromise

  • HTTP requests to dispatcher.php containing the open parameter with ../ traversal sequences or absolute paths.
  • Access log entries showing requests for the plugin endpoint referencing files such as wp-config.php, /etc/passwd, or .env.
  • Unexpected outbound traffic following successful file reads, indicating data exfiltration.

Detection Strategies

  • Inspect web server access logs for requests matching dispatcher.php?open= with suspicious path values.
  • Deploy web application firewall rules that block path traversal patterns targeting WordPress plugin endpoints.
  • Correlate plugin endpoint hits with subsequent authentication failures or privilege escalation attempts that may use harvested credentials.

Monitoring Recommendations

  • Enable verbose access logging on WordPress hosts and forward logs to a centralized analytics platform.
  • Alert on any unauthenticated access to wp-content/plugins/amministrazione-aperta/ paths.
  • Monitor for reads or transmissions of wp-config.php content patterns in HTTP responses.

How to Mitigate CVE-2022-50956

Immediate Actions Required

  • Disable or uninstall the amministrazione-aperta plugin until a fixed version is verified through the WordPress plugin page.
  • Rotate all credentials stored in wp-config.php, including database passwords and authentication keys, if exposure is suspected.
  • Audit web server logs for prior exploitation attempts referencing the open parameter.

Patch Information

No confirmed patched version is referenced in the available advisories. Administrators should check the WordPress plugin repository for updates beyond 3.7.3 and consult the VulnCheck Advisory for vendor guidance.

Workarounds

  • Block external access to wp-content/plugins/amministrazione-aperta/dispatcher.php at the web server or WAF level.
  • Restrict filesystem permissions so the web server user cannot read sensitive files outside the document root.
  • Apply WAF signatures that deny requests containing path traversal sequences on plugin endpoints.
bash
# Example nginx rule to block direct access to the vulnerable endpoint
location ~* /wp-content/plugins/amministrazione-aperta/dispatcher\.php {
    deny all;
    return 403;
}

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • WordPress Plugin Information

  • Exploit-DB #50838

  • VulnCheck Advisory for WordPress Plugin
  • Related CVEs
  • CVE-2026-6670: WordPress Media Sync Path Traversal Flaw

  • CVE-2026-3892: Motors Plugin Path Traversal Vulnerability

  • CVE-2022-50954: cab-fare-calculator Path Traversal Flaw

  • CVE-2026-6320: Salon Booking System Path Traversal Flaw
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