873 - Pentesting Rsync

rsync is a protocol which is used to sync and transfer files.

Rsync

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

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

Last updated