4 KiB
FTP Bounce attack - Scan
{% hint style="success" %}
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.
Try Hard Security Group
{% embed url="https://discord.gg/tryhardsecurity" %}
FTP Bounce - Scanning
Manual
- Conéctate al FTP vulnerable
- Usa **
PORT
** oEPRT
(pero solo uno de ellos) para establecer una conexión con el <IP:Port> que deseas escanear:
PORT 172,32,80,80,0,8080
EPRT |2|172.32.80.80|8080|
3. Usa LIST
(esto solo enviará a la <IP:Port> 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) o 425 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
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
Try Hard Security Group
{% embed url="https://discord.gg/tryhardsecurity" %}
{% hint style="success" %}
Aprende y practica Hacking en AWS:HackTricks Training AWS Red Team Expert (ARTE)
Aprende y practica Hacking en GCP: HackTricks Training GCP Red Team Expert (GRTE)
Apoya a HackTricks
- Revisa los planes de suscripción!
- Únete al 💬 grupo de Discord o al grupo de telegram o síguenos en Twitter 🐦 @hacktricks_live.
- Comparte trucos de hacking enviando PRs a los HackTricks y HackTricks Cloud repositorios de github.