Rsync
Source CTF and HTB Academy
Usually on port 873
Tool for locally and remotely copying files.
Enumeration
Nmap
sudo nmap -sV -p 873 127.0.0.1
Netcat
nc -nv 127.0.0.1 873
Probing for Accessible Shares
Enumerate an open share
rsync -av --list-only rsync://127.0.0.1/dev
Resources
Last updated