Python RE Bypass Technique - secjuice.com
www.secjuice.com › python-re-match-bypass-techniqueJul 25, 2021 · A Python Regular Expression Bypass Technique One of the most common ways to check a user's input is to test it against a Regular Expression. The Python module RE provides easy and very powerful functions to check if a particular string matches a given regular expression (or if a given regular expression matches a particular string, which comes down to the same thing).
Bypass Python sandboxes - HackTricks
book.hacktricks.xyz › misc › basic-pythonPython2 input()function allows to execute python code before the program crashes. Python try to load libraries from the current directory first (the following command will print where is python loading modules from): python3 -c 'import sys; print(sys.path)'. Bypass pickle sandbox with default installed python packages.