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.

2782+ Articles
166+ 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. Code Monkeys Proposals Plugin Lets Any Subscriber Delete WordPress Files
Code Monkeys Proposals Plugin Lets Any Subscriber Delete WordPress Files

Critical Security Alert

This vulnerability is actively being exploited. Immediate action is recommended.

SECURITYCRITICALCVE-2026-77005

Code Monkeys Proposals Plugin Lets Any Subscriber Delete WordPress Files

CVE-2026-77005 allows low-privilege WordPress users to delete arbitrary server files, including wp-config.php, enabling full site takeover.

Dylan H.

Security Team

September 12, 2026
3 min read

Affected Products

  • Code Monkeys Proposals Plugin ≤ 1.0.1

Executive Summary

A critical arbitrary file deletion vulnerability (CVE-2026-77005) has been disclosed in the Code Monkeys Proposals WordPress plugin. The plugin does not validate a user-supplied file path before deleting a file, and does not check the capability of the requesting user — meaning any authenticated account, down to the lowest-privilege subscriber role, can delete arbitrary files on the server.

CVSS Score: 9.6 (Critical)

Deleting the right file — wp-config.php is the classic target — can force WordPress into a broken state that allows an attacker to walk through the setup wizard again and take over the site outright.


Vulnerability Overview

AttributeValue
CVE IDCVE-2026-77005
CVSS Score9.6 (Critical)
TypeExternal Control of File Name or Path (CWE-73)
Attack VectorNetwork
Privileges RequiredLow (any authenticated subscriber-level account)
User InteractionNone

Affected Versions

PluginAffected VersionsFixed Version
Code Monkeys Proposals≤ 1.0.1Not yet published at time of writing

Attack Vector

1. Attacker registers or already holds a subscriber-level WordPress account
2. Attacker sends a request to the plugin's file-deletion handler with a
   crafted file path (no capability check enforced)
3. Plugin deletes the targeted file without validating the path or
   the requesting user's permissions
4. Deleting wp-config.php forces WordPress into the setup wizard,
   letting the attacker point it at a database they control
5. Attacker completes setup as a new administrator — full site takeover

Impact of Successful Exploitation

ImpactDescription
Site TakeoverDeleting wp-config.php can trigger a hostile re-install
Denial of ServiceDeleting core or plugin files breaks site functionality
Data LossUploaded media, logs, or backups can be destroyed

Immediate Remediation

Step 1: Check for a Patch

No fixed version was available at time of disclosure. Check the plugin's WordPress.org page or WPScan advisory regularly for an update.

wp plugin get code-monkeys-proposals --field=version

Step 2: Restrict or Remove the Plugin

Until a patch ships:

  1. Deactivate the Code Monkeys Proposals plugin
  2. If deactivation isn't immediately possible, restrict subscriber-level registration (disable open registration, require admin approval)
  3. Back up wp-config.php and core files off-server so a deletion can be recovered from quickly

Step 3: Check for Prior Exploitation

# Confirm wp-config.php and other critical files are intact
ls -la wp-config.php wp-load.php
 
# Check web server logs for requests to plugin file-handling endpoints
grep -i "code-monkeys-proposals" /var/log/apache2/access.log

Post-Remediation Steps

  1. Apply the vendor patch as soon as one is released
  2. Audit subscriber accounts for ones you don't recognize
  3. Restore any deleted files from backup and verify WordPress core integrity (wp core verify-checksums)
  4. Disable open user registration if not required
  5. Deploy file integrity monitoring to catch unauthorized deletions early

References

  • OffSeq Threat Radar — CVE-2026-77005 CWE-73 External Control of File Name or Path in CODE MONKEYS PROPOSALS
  • VulDB — CVE-2026-77005 in Code Monkeys Proposals Plugin
  • NIST NVD — CVE-2026-77005

Related Reading

  • WebTotem Backups Plugin Lets Any Subscriber Delete WordPress Files
  • Critical RCE in WPvivid Backup Plugin Threatens 900,000+
#WordPress#CVE-2026-77005#Arbitrary File Deletion#Privilege Escalation#Web Security

Related Articles

WebTotem Backups Plugin Lets Any Subscriber Delete WordPress Files

CVE-2026-77006 lets low-privilege WordPress users delete arbitrary server files after the plugin discards its own CSRF check result.

3 min read

CVE-2026-18855: WordPress Link Library Plugin Arbitrary File Deletion

Critical CVSS 9.1 flaw in WordPress Link Library plugin allows unauthenticated attackers to delete arbitrary server files, risking full site takeover.

3 min read

CVE-2026-3141: WordPress FormGent Plugin Unauthorized File Deletion (CVSS 9.1)

A critical unauthenticated file deletion vulnerability in the FormGent WordPress plugin allows attackers to delete arbitrary files without authentication, potentially leading to full site compromise.

2 min read
Back to all Security Alerts