Local Priv Exploits
Windows python exploits
you can use pyinstaller on your windows attacker box to convert a python exploit to a windows executable file because the target windows box may not necessarily have a python environment set up on it
e.g.
python pyinstaller.py --onefile <python exploit file>
This tool will create a windows executable file of the same name in the .\<python exploit file>\dist\ directory
Last updated