├── .gitignore ├── Hellf ├── ELF.py ├── __init__.py └── lib │ ├── __init__.py │ ├── consts.py │ ├── elf_structs.py │ ├── structures.py │ └── type.txt ├── README.md ├── img ├── logo.png └── twitter.gif ├── setup.py └── tests ├── Makefile ├── add_section.py ├── nothing.py ├── replace_text.py └── unstrip.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/* 2 | build/ 3 | dist/ 4 | Hellf.egg-info/ 5 | -------------------------------------------------------------------------------- /Hellf/ELF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xswitch/Hellf/HEAD/Hellf/ELF.py -------------------------------------------------------------------------------- /Hellf/__init__.py: -------------------------------------------------------------------------------- 1 | from Hellf.ELF import ELF 2 | -------------------------------------------------------------------------------- /Hellf/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xswitch/Hellf/HEAD/Hellf/lib/__init__.py -------------------------------------------------------------------------------- /Hellf/lib/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xswitch/Hellf/HEAD/Hellf/lib/consts.py -------------------------------------------------------------------------------- /Hellf/lib/elf_structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xswitch/Hellf/HEAD/Hellf/lib/elf_structs.py -------------------------------------------------------------------------------- /Hellf/lib/structures.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hellf/lib/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xswitch/Hellf/HEAD/Hellf/lib/type.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xswitch/Hellf/HEAD/README.md -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xswitch/Hellf/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/twitter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xswitch/Hellf/HEAD/img/twitter.gif -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xswitch/Hellf/HEAD/setup.py -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xswitch/Hellf/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/add_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xswitch/Hellf/HEAD/tests/add_section.py -------------------------------------------------------------------------------- /tests/nothing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xswitch/Hellf/HEAD/tests/nothing.py -------------------------------------------------------------------------------- /tests/replace_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xswitch/Hellf/HEAD/tests/replace_text.py -------------------------------------------------------------------------------- /tests/unstrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xswitch/Hellf/HEAD/tests/unstrip.py --------------------------------------------------------------------------------