> For the complete documentation index, see [llms.txt](https://notes.programmersecurity.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notes.programmersecurity.com/network-penetration-testing/873-pentesting-rsync.md).

# 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

```
