├── .gitignore ├── LICENSE ├── README.md ├── ZwoELF ├── Compatibility.py ├── Elf.py ├── ElfParserLib.py └── __init__.py └── examples ├── IDAPython └── addDynamicSymbols_ida.py ├── addRandomSections.py ├── createFalseDynstrSection.py ├── indirectJmpWithMemoryData.py ├── modifySymbolValue.py ├── newEntryPoint.py ├── obfuscatePltSection.py └── readElf.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqall01/ZwoELF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqall01/ZwoELF/HEAD/README.md -------------------------------------------------------------------------------- /ZwoELF/Compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqall01/ZwoELF/HEAD/ZwoELF/Compatibility.py -------------------------------------------------------------------------------- /ZwoELF/Elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqall01/ZwoELF/HEAD/ZwoELF/Elf.py -------------------------------------------------------------------------------- /ZwoELF/ElfParserLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqall01/ZwoELF/HEAD/ZwoELF/ElfParserLib.py -------------------------------------------------------------------------------- /ZwoELF/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqall01/ZwoELF/HEAD/ZwoELF/__init__.py -------------------------------------------------------------------------------- /examples/IDAPython/addDynamicSymbols_ida.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqall01/ZwoELF/HEAD/examples/IDAPython/addDynamicSymbols_ida.py -------------------------------------------------------------------------------- /examples/addRandomSections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqall01/ZwoELF/HEAD/examples/addRandomSections.py -------------------------------------------------------------------------------- /examples/createFalseDynstrSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqall01/ZwoELF/HEAD/examples/createFalseDynstrSection.py -------------------------------------------------------------------------------- /examples/indirectJmpWithMemoryData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqall01/ZwoELF/HEAD/examples/indirectJmpWithMemoryData.py -------------------------------------------------------------------------------- /examples/modifySymbolValue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqall01/ZwoELF/HEAD/examples/modifySymbolValue.py -------------------------------------------------------------------------------- /examples/newEntryPoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqall01/ZwoELF/HEAD/examples/newEntryPoint.py -------------------------------------------------------------------------------- /examples/obfuscatePltSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqall01/ZwoELF/HEAD/examples/obfuscatePltSection.py -------------------------------------------------------------------------------- /examples/readElf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqall01/ZwoELF/HEAD/examples/readElf.py --------------------------------------------------------------------------------