rsync
Fast, versatile file copying tool. Supports remote file sync over SSH — useful for exfiltration, payload staging, and lateral file movement.
Binary Paths
/usr/bin/rsync/usr/local/bin/rsync
Glob Patterns
| Pattern | Wildcards | Notes |
|---|---|---|
rsyn?
|
? | Wildcard replaces 'c' |
r*c
|
* | Star matches 'syn' |
rs[y]nc
|
[] | Bracket class on third char |
r?ync
|
? | Wildcard replaces 's' |
rsyn[c]
|
[] | Bracket class on last char |
/usr/bin/rsyn?
|
? | Full path wildcard |
/???/bin/r*c
|
? * | Full path mixed wildcards |