├── .editorconfig ├── .gitignore ├── AUTHORS ├── COPYING ├── README.md ├── filebytes ├── __init__.py ├── binary.py ├── ctypes_helper.py ├── elf.py ├── enum.py ├── mach_o.py ├── oat.py └── pe.py ├── samples ├── sample_elf.py ├── sample_macho.py ├── sample_macho_fat.py └── sample_pe.py ├── setup.cfg ├── setup.py └── test-binaries ├── cmd-x86.exe ├── cmd-x86_64.exe ├── dummy-macho-universal-x86-x86_64 ├── dummy.c ├── libc-2.19.so ├── ls-macho-x86_64 ├── ls-x86 ├── ls-x86_64 └── ntdll.dll /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/README.md -------------------------------------------------------------------------------- /filebytes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/filebytes/__init__.py -------------------------------------------------------------------------------- /filebytes/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/filebytes/binary.py -------------------------------------------------------------------------------- /filebytes/ctypes_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/filebytes/ctypes_helper.py -------------------------------------------------------------------------------- /filebytes/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/filebytes/elf.py -------------------------------------------------------------------------------- /filebytes/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/filebytes/enum.py -------------------------------------------------------------------------------- /filebytes/mach_o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/filebytes/mach_o.py -------------------------------------------------------------------------------- /filebytes/oat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/filebytes/oat.py -------------------------------------------------------------------------------- /filebytes/pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/filebytes/pe.py -------------------------------------------------------------------------------- /samples/sample_elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/samples/sample_elf.py -------------------------------------------------------------------------------- /samples/sample_macho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/samples/sample_macho.py -------------------------------------------------------------------------------- /samples/sample_macho_fat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/samples/sample_macho_fat.py -------------------------------------------------------------------------------- /samples/sample_pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/samples/sample_pe.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/setup.py -------------------------------------------------------------------------------- /test-binaries/cmd-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/test-binaries/cmd-x86.exe -------------------------------------------------------------------------------- /test-binaries/cmd-x86_64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/test-binaries/cmd-x86_64.exe -------------------------------------------------------------------------------- /test-binaries/dummy-macho-universal-x86-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/test-binaries/dummy-macho-universal-x86-x86_64 -------------------------------------------------------------------------------- /test-binaries/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/test-binaries/dummy.c -------------------------------------------------------------------------------- /test-binaries/libc-2.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/test-binaries/libc-2.19.so -------------------------------------------------------------------------------- /test-binaries/ls-macho-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/test-binaries/ls-macho-x86_64 -------------------------------------------------------------------------------- /test-binaries/ls-x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/test-binaries/ls-x86 -------------------------------------------------------------------------------- /test-binaries/ls-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/test-binaries/ls-x86_64 -------------------------------------------------------------------------------- /test-binaries/ntdll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashs/filebytes/HEAD/test-binaries/ntdll.dll --------------------------------------------------------------------------------