wget
Non-interactive network downloader. Used to fetch files from HTTP/FTP servers, download payloads, or stage tools.
Binary Paths
/usr/bin/wget/bin/wget
Glob Patterns
| Pattern | Wildcards | Notes |
|---|---|---|
wge?
|
? | Wildcard replaces 't' |
w*t
|
* | Star matches 'ge' |
wg[e]t
|
[] | Character class around 'e' |
w?et
|
? | Wildcard replaces 'g' |
w?e?
|
? | Two wildcards replace 'g' and 't' |
/usr/bin/wge?
|
? | Full path wildcard on last char |
/???/bin/wget
|
? | Obfuscate /usr/ directory |
/???/???/w*
|
? * | Full path with mixed wildcards |
w[g]et
|
[] | Bracket class on second char |
wge[t]
|
[] | Bracket class matching last two chars (matches any single char in set) |