CVE-2026-11367
Deferred Deferred - Pending Action

Directory Traversal in PixMagix WordPress Plugin

Vulnerability report for CVE-2026-11367, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-06-30

Last updated on: 2026-06-30

Assigner: Wordfence

Description

The PixMagix – WordPress Image Editor plugin for WordPress is vulnerable to Directory Traversal in all versions up to, and including, 1.7.2 via the move_image_on_server function. This makes it possible for authenticated attackers, with author-level access and above, to write files with attacker-controlled content to arbitrary locations on the server. The unsanitized 'layers[].id' parameter is concatenated into a filesystem path and passed to PHP's copy() function, allowing traversal sequences (e.g. '../../') to escape the intended upload directory and write attacker-supplied file contents to arbitrary paths accessible by the web server process. The save_template REST endpoint is gated by the create_projects permission (edit_pixmagix + upload_files), which Author-level users hold by default after plugin activation, making this exploitable by any Author on sites running PixMagix.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-06-30
Last Modified
2026-06-30
Generated
2026-07-20
AI Q&A
2026-06-30
EPSS Evaluated
2026-07-19
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
pixmagix wordpress_image_editor to 1.7.2 (inc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-22 The product uses external input to construct a pathname that is intended to identify a file or directory that is located underneath a restricted parent directory, but the product does not properly neutralize special elements within the pathname that can cause the pathname to resolve to a location that is outside of the restricted directory.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

The PixMagix WordPress Image Editor plugin is vulnerable to a Directory Traversal attack in all versions up to and including 1.7.2. This vulnerability exists in the move_image_on_server function, where an unsanitized parameter ('layers[].id') is used to build a filesystem path. Because this parameter is not properly sanitized, an attacker with author-level access or higher can include traversal sequences like '../../' to escape the intended upload directory.

This allows the attacker to write files with attacker-controlled content to arbitrary locations on the server by exploiting the PHP copy() function call. The vulnerability is exploitable via the save_template REST endpoint, which requires permissions that author-level users have by default after the plugin is activated.

Detection Guidance

This vulnerability involves the exploitation of the 'layers[].id' parameter in the PixMagix WordPress Image Editor plugin to perform directory traversal and write files to arbitrary locations on the server.

To detect exploitation attempts on your system or network, you can monitor HTTP requests to the save_template REST endpoint for suspicious traversal sequences such as '../../' in the 'layers[].id' parameter.

Example commands to detect such attempts in web server logs include:

  • Using grep to search for traversal patterns in access logs: grep -E "layers%5B.*%5D=\.\./\.\./" /var/log/apache2/access.log
  • Searching for POST requests to the save_template endpoint: grep "POST /wp-json/pixmagix/v1/save_template" /var/log/apache2/access.log
  • Combining both to find suspicious requests: grep "POST /wp-json/pixmagix/v1/save_template" /var/log/apache2/access.log | grep -E "layers%5B.*%5D=\.\./\.\./"

Additionally, monitoring file system changes for unexpected files in directories outside the intended upload path may help detect successful exploitation.

Impact Analysis

This vulnerability can allow an authenticated attacker with author-level access to write arbitrary files anywhere on the server where the web server process has write permissions. This could lead to unauthorized file creation or modification, potentially enabling further attacks such as web shell uploads, defacement, or other malicious activities.

Since the attacker can place files outside the intended upload directory, this may compromise the integrity and security of the server and the website.

Mitigation Strategies

Immediate mitigation steps include:

  • Update the PixMagix WordPress Image Editor plugin to a version later than 1.7.2 where the vulnerability is fixed.
  • Restrict author-level user permissions if possible, since the vulnerability requires author-level access or higher.
  • Implement web application firewall (WAF) rules to block requests containing directory traversal patterns in the 'layers[].id' parameter.
  • Monitor and audit server file system for unauthorized file writes.
  • If immediate update is not possible, consider disabling or restricting access to the save_template REST endpoint.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-11367. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart