mirror of
https://github.com/carlospolop/hacktricks
synced 2025-01-09 03:38:51 +00:00
46 lines
2.9 KiB
Markdown
46 lines
2.9 KiB
Markdown
|
# FTP Bounce - Escaneo
|
||
|
|
||
|
## Manual
|
||
|
|
||
|
1. Conéctese al FTP vulnerable.
|
||
|
2. Use **`PORT`** o **`EPRT`** (pero solo uno de ellos) para hacer que establezca una conexión con la _\<IP:Puerto>_ que desea escanear:
|
||
|
|
||
|
`PORT 172,32,80,80,0,8080`\
|
||
|
`EPRT |2|172.32.80.80|8080|`
|
||
|
3. Use **`LIST`** (esto solo enviará a la _\<IP:Puerto>_ conectada la lista de archivos actuales en la carpeta FTP) y verifique 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).
|
||
|
1. En lugar de `LIST`, también podría usar **`RETR /archivo/en/ftp`** y buscar respuestas similares de `Abierto/Cerrado`.
|
||
|
|
||
|
Ejemplo usando **PORT** (el puerto 8080 de 172.32.80.80 está abierto y el puerto 7777 está cerrado):
|
||
|
|
||
|
![](<../../.gitbook/assets/image (225).png>)
|
||
|
|
||
|
Mismo ejemplo usando **`EPRT`** (se omite la autenticación en la imagen):
|
||
|
|
||
|
![](<../../.gitbook/assets/image (226).png>)
|
||
|
|
||
|
Puerto abierto usando `EPRT` en lugar de `LIST` (entorno diferente)
|
||
|
|
||
|
![](<../../.gitbook/assets/image (228).png>)
|
||
|
|
||
|
## **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
|
||
|
```
|
||
|
<details>
|
||
|
|
||
|
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks Cloud ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 Twitter 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
|
||
|
|
||
|
- ¿Trabajas en una **empresa de ciberseguridad**? ¿Quieres ver tu **empresa anunciada en HackTricks**? ¿O quieres tener acceso a la **última versión de PEASS o descargar HackTricks en PDF**? ¡Revisa los [**PLANES DE SUSCRIPCIÓN**](https://github.com/sponsors/carlospolop)!
|
||
|
|
||
|
- Descubre [**The PEASS Family**](https://opensea.io/collection/the-peass-family), nuestra colección exclusiva de [**NFTs**](https://opensea.io/collection/the-peass-family)
|
||
|
|
||
|
- Obtén el [**swag oficial de PEASS y HackTricks**](https://peass.creator-spring.com)
|
||
|
|
||
|
- **Únete al** [**💬**](https://emojipedia.org/speech-balloon/) **grupo de Discord** o al [**grupo de telegram**](https://t.me/peass) o **sígueme en** **Twitter** [**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
|
||
|
|
||
|
- **Comparte tus trucos de hacking enviando PR a los repositorios [hacktricks](https://github.com/carlospolop/hacktricks) y [hacktricks-cloud](https://github.com/carlospolop/hacktricks-cloud)**.
|
||
|
|
||
|
</details>
|