python3
Python 3 interpreter. Enables arbitrary code execution, file operations, network connections, and more.
Binary Paths
/usr/bin/python3/usr/bin/python3.x/usr/local/bin/python3
Glob Patterns
| Pattern | Wildcards | Notes |
|---|---|---|
python?
|
? | Matches python3, python2, etc. |
p?thon3
|
? | Wildcard replaces 'y' |
py*3
|
* | Star matches 'thon' |
pyth[o]n3
|
[] | Character class around 'o' |
p*3
|
* | Aggressive star wildcard |
python[3]
|
[] | Bracket class on version digit |
/usr/bin/python?
|
? | Full path wildcard on version |
/???/bin/p*3
|
? * | Full path with mixed wildcards |
py?hon3
|
? | Wildcard replaces 't' |
/usr/*/python3
|
* | Wildcard in directory traversal |