# 873 - Pentesting Rsync

## Rsync

We can use rsync to see the files and folders which we can sync

```python
rsync --list-only -av rsync://10.10.65.244/  # List the Shared Folders

#after we see the files and folders, we can download those

rsync -av rsync://10.10.65.244/backups ./backups # Download the Shared Folders

```
