Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsTraining
StudyProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Training
Study
Projects
Newsletter
Hire Me
About
RSS Feed
Reading List
Subscribe

Stay in the Loop

Get the latest security alerts, tutorials, and tech insights delivered to your inbox.

Subscribe NowFree forever. No spam.
COSMICBYTEZLABS

Your trusted source for IT intelligence, cybersecurity insights, and hands-on technical guides.

2175+ Articles
156+ Guides

CONTENT

  • Latest News
  • Security Alerts
  • HOWTOs
  • Checklists
  • Projects
  • Exam Prep

RESOURCES

  • Search
  • Browse Tags
  • Newsletter Archive
  • Reading List
  • RSS Feed

COMPANY

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CosmicBytez Labs. All rights reserved.

System Status: Operational
  1. Home
  2. Security
  3. CVE-2026-18352: WordPress User Access Manager Directory Traversal
CVE-2026-18352: WordPress User Access Manager Directory Traversal
SECURITYHIGHCVE-2026-18352

CVE-2026-18352: WordPress User Access Manager Directory Traversal

The User Access Manager plugin for WordPress (up to v2.3.15) is vulnerable to unauthenticated directory traversal via the 'uamgetfile' parameter, allowing attackers to read arbitrary files on the server.

Dylan H.

Security Team

August 2, 2026
4 min read

Affected Products

  • User Access Manager Plugin for WordPress <= 2.3.15

Executive Summary

A High-severity directory traversal vulnerability (CVE-2026-18352) has been disclosed in the User Access Manager plugin for WordPress. All versions up to and including 2.3.15 are affected. The flaw exists in the uamgetfile parameter and allows unauthenticated attackers to read the contents of arbitrary files on the server — including sensitive configuration files and credentials.

CVSS Score: 7.5 (High)

The vulnerability requires no authentication and no user interaction, making it straightforward to exploit remotely. WordPress site owners running the affected plugin should update immediately.


Vulnerability Overview

AttributeValue
CVE IDCVE-2026-18352
CVSS Score7.5 (High)
TypeDirectory Traversal / Arbitrary File Read
Attack VectorNetwork (no authentication required)
Privileges RequiredNone
User InteractionNone
Parameteruamgetfile

Affected Versions

PluginAffected VersionsFixed Version
User Access Manager (WordPress)<= 2.3.15Apply vendor patch

The User Access Manager plugin is a popular WordPress plugin used to manage user roles, restrict access to posts and pages, and create member-only sections. Its widespread deployment across WordPress sites amplifies the potential impact of this flaw.


Technical Details

The vulnerability exists in the way the plugin handles file download requests. The uamgetfile parameter, used to serve protected files to authorized users, fails to properly sanitize user-supplied path input. An attacker can craft a request using path traversal sequences (../) to navigate outside the intended directory and read files anywhere on the filesystem accessible to the web server process.

Attack Flow

1. Attacker identifies a WordPress site running User Access Manager <= 2.3.15
2. Attacker sends a crafted HTTP GET request with a traversal payload:
   ?uamgetfile=../../wp-config.php
3. Plugin processes the request without sanitizing the path
4. Server returns contents of the requested file
5. Attacker extracts database credentials, secret keys, and configuration data

Files at Risk

FileContents at Risk
wp-config.phpDatabase host, name, username, password, secret keys
/etc/passwdSystem user accounts (Linux servers)
.env filesAPI keys, environment-specific secrets
wp-content/uploads/Sensitive uploaded documents
Log filesApplication and error logs containing sensitive data

Remediation

Step 1: Update the Plugin

Update User Access Manager to the latest version through the WordPress admin dashboard:

Plugins > Installed Plugins > User Access Manager > Update Now

Or via WP-CLI:

wp plugin update user-access-manager
 
# Verify installed version
wp plugin get user-access-manager --field=version

Step 2: If Immediate Update Is Not Possible

  1. Deactivate the plugin until a patch can be applied
  2. Block requests containing traversal sequences at the WAF or web server level:
# Nginx — block directory traversal attempts
if ($request_uri ~* "\.\./") {
    return 403;
}
# Apache — mod_rewrite rule
RewriteCond %{QUERY_STRING} \.\./ [NC]
RewriteRule .* - [F]

Step 3: Check for Signs of Exploitation

# Search web server access logs for uamgetfile traversal attempts
grep -i "uamgetfile" /var/log/nginx/access.log | grep "\.\."
 
# Check for abnormal access to wp-config.php via GET requests
grep "wp-config.php" /var/log/nginx/access.log
 
# Review recent plugin file reads in PHP logs
grep "uamgetfile" /var/log/php/error.log

Detection Indicators

IndicatorDescription
GET requests with uamgetfile=../../ patternDirectory traversal exploitation attempts
Unexpected reads of wp-config.php in access logsPotential credential theft
Requests to /etc/passwd or system filesOS-level file enumeration
Unusual outbound connections following exploitationAttacker using harvested credentials

Post-Remediation Checklist

  1. Confirm the plugin is updated to the patched version
  2. Review access logs for evidence of traversal attempts prior to patching
  3. Rotate all secrets stored in wp-config.php — database password, secret keys, API keys
  4. Regenerate WordPress salt keys via wp config shuffle-salts
  5. Audit file permissions — ensure the web server cannot read sensitive files outside the webroot
  6. Deploy a WAF (Wordfence, Sucuri, Cloudflare) to block future traversal attempts
  7. Enable file integrity monitoring to detect unauthorized reads or changes

References

  • NVD — CVE-2026-18352
  • User Access Manager Plugin — WordPress.org

Related Reading

  • WPvivid Backup Plugin Critical RCE (CVE-2026-1357)
  • WordPress Modular DS Critical Flaw
#CVE-2026-18352#WordPress#Directory Traversal#NVD#Vulnerability#File Read

Related Articles

CVE-2026-4321: Critical SQL Injection in Raera Destekz Plugin (No Patch Available)

A CVSS 9.8 critical SQL injection in the Destekz plugin by Raera - Ankara Web Design allows unauthenticated remote attackers full database access. The...

2 min read

CVE-2026-7515: BetterDocs Pro WordPress Plugin — Unauthenticated Local File Inclusion

A critical Local File Inclusion vulnerability in the BetterDocs Pro WordPress plugin (up to v3.8.0) allows unauthenticated attackers to include and...

6 min read

CVE-2026-39574: Critical SQL Injection in InPost Gallery WordPress Plugin

A critical unauthenticated SQL injection vulnerability (CVSS 9.3) in the InPost Gallery WordPress plugin allows attackers to extract sensitive database...

2 min read
Back to all Security Alerts