├── .gitignore ├── README.md ├── main.py ├── pyside ├── PySide.exe └── PySide.zip └── src ├── icons ├── assemble.png ├── nopout.png ├── nopxrefs.png ├── togglejump.png └── uncondjump.png └── py3 ├── AssembleForm.py ├── CodeCaveFinder.py ├── Fentanyl.py ├── FtlHooks.py ├── Neuter.py ├── Util.py └── hooks.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store 3 | *.swp 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/main.py -------------------------------------------------------------------------------- /pyside/PySide.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/pyside/PySide.exe -------------------------------------------------------------------------------- /pyside/PySide.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/pyside/PySide.zip -------------------------------------------------------------------------------- /src/icons/assemble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/src/icons/assemble.png -------------------------------------------------------------------------------- /src/icons/nopout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/src/icons/nopout.png -------------------------------------------------------------------------------- /src/icons/nopxrefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/src/icons/nopxrefs.png -------------------------------------------------------------------------------- /src/icons/togglejump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/src/icons/togglejump.png -------------------------------------------------------------------------------- /src/icons/uncondjump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/src/icons/uncondjump.png -------------------------------------------------------------------------------- /src/py3/AssembleForm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/src/py3/AssembleForm.py -------------------------------------------------------------------------------- /src/py3/CodeCaveFinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/src/py3/CodeCaveFinder.py -------------------------------------------------------------------------------- /src/py3/Fentanyl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/src/py3/Fentanyl.py -------------------------------------------------------------------------------- /src/py3/FtlHooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/src/py3/FtlHooks.py -------------------------------------------------------------------------------- /src/py3/Neuter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/src/py3/Neuter.py -------------------------------------------------------------------------------- /src/py3/Util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/src/py3/Util.py -------------------------------------------------------------------------------- /src/py3/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osirislab/Fentanyl/HEAD/src/py3/hooks.py --------------------------------------------------------------------------------