perl
Perl interpreter. Supports arbitrary code execution, file I/O, network operations — useful for one-liner payloads and reverse shells.
Binary Paths
/usr/bin/perl/usr/local/bin/perl
Glob Patterns
| Pattern | Wildcards | Notes |
|---|---|---|
per?
|
? | Wildcard replaces 'l' |
p*l
|
* | Star matches 'er' |
pe[r]l
|
[] | Bracket class on third char |
p?rl
|
? | Wildcard replaces 'e' |
per[l]
|
[] | Bracket class on last char |
/usr/bin/per?
|
? | Full path wildcard |
/???/bin/p*l
|
? * | Full path mixed wildcards |