├── .gitignore ├── .travis.yml ├── MANIFEST.in ├── README.rst ├── appveyor.yml ├── roach ├── __init__.py ├── bits.py ├── compression │ ├── __init__.py │ ├── aplib.py │ └── gzip.py ├── crypto │ ├── __init__.py │ ├── aes.py │ ├── blowfish.py │ ├── des3.py │ ├── rabbit.py │ ├── rc.py │ ├── rsa.py │ ├── winhdr.py │ └── xor.py ├── disasm.py ├── hash │ ├── __init__.py │ ├── crc.py │ └── sha.py ├── main.py ├── native │ ├── __init__.py │ ├── aplib.py │ ├── common.py │ └── components │ │ ├── aplib-32.dll │ │ ├── aplib-32.so │ │ ├── aplib-64.dll │ │ └── aplib-64.so ├── pe.py ├── procmem.py ├── short.py ├── string │ ├── __init__.py │ ├── bin.py │ ├── inet.py │ └── ops.py ├── structure.py └── verify.py ├── setup.py ├── tests ├── files │ ├── calc.dmp │ ├── calc.exe │ ├── dummy.dmp │ └── ollydbg.exe ├── test_bits.py ├── test_compression.py ├── test_crypto.py ├── test_disasm.py ├── test_hash.py ├── test_main.py ├── test_pe.py ├── test_procmem.py ├── test_string.py ├── test_structure.py ├── test_verify.py └── test_winhdr.py └── venv ├── bin ├── activate ├── activate.csh ├── activate.fish ├── python └── python3 ├── lib64 └── pyvenv.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/.travis.yml -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/README.rst -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/appveyor.yml -------------------------------------------------------------------------------- /roach/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/__init__.py -------------------------------------------------------------------------------- /roach/bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/bits.py -------------------------------------------------------------------------------- /roach/compression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/compression/__init__.py -------------------------------------------------------------------------------- /roach/compression/aplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/compression/aplib.py -------------------------------------------------------------------------------- /roach/compression/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/compression/gzip.py -------------------------------------------------------------------------------- /roach/crypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/crypto/__init__.py -------------------------------------------------------------------------------- /roach/crypto/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/crypto/aes.py -------------------------------------------------------------------------------- /roach/crypto/blowfish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/crypto/blowfish.py -------------------------------------------------------------------------------- /roach/crypto/des3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/crypto/des3.py -------------------------------------------------------------------------------- /roach/crypto/rabbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/crypto/rabbit.py -------------------------------------------------------------------------------- /roach/crypto/rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/crypto/rc.py -------------------------------------------------------------------------------- /roach/crypto/rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/crypto/rsa.py -------------------------------------------------------------------------------- /roach/crypto/winhdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/crypto/winhdr.py -------------------------------------------------------------------------------- /roach/crypto/xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/crypto/xor.py -------------------------------------------------------------------------------- /roach/disasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/disasm.py -------------------------------------------------------------------------------- /roach/hash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/hash/__init__.py -------------------------------------------------------------------------------- /roach/hash/crc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/hash/crc.py -------------------------------------------------------------------------------- /roach/hash/sha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/hash/sha.py -------------------------------------------------------------------------------- /roach/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/main.py -------------------------------------------------------------------------------- /roach/native/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/native/__init__.py -------------------------------------------------------------------------------- /roach/native/aplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/native/aplib.py -------------------------------------------------------------------------------- /roach/native/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/native/common.py -------------------------------------------------------------------------------- /roach/native/components/aplib-32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/native/components/aplib-32.dll -------------------------------------------------------------------------------- /roach/native/components/aplib-32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/native/components/aplib-32.so -------------------------------------------------------------------------------- /roach/native/components/aplib-64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/native/components/aplib-64.dll -------------------------------------------------------------------------------- /roach/native/components/aplib-64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/native/components/aplib-64.so -------------------------------------------------------------------------------- /roach/pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/pe.py -------------------------------------------------------------------------------- /roach/procmem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/procmem.py -------------------------------------------------------------------------------- /roach/short.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/short.py -------------------------------------------------------------------------------- /roach/string/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/string/__init__.py -------------------------------------------------------------------------------- /roach/string/bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/string/bin.py -------------------------------------------------------------------------------- /roach/string/inet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/string/inet.py -------------------------------------------------------------------------------- /roach/string/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/string/ops.py -------------------------------------------------------------------------------- /roach/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/structure.py -------------------------------------------------------------------------------- /roach/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/roach/verify.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/setup.py -------------------------------------------------------------------------------- /tests/files/calc.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/files/calc.dmp -------------------------------------------------------------------------------- /tests/files/calc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/files/calc.exe -------------------------------------------------------------------------------- /tests/files/dummy.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/files/dummy.dmp -------------------------------------------------------------------------------- /tests/files/ollydbg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/files/ollydbg.exe -------------------------------------------------------------------------------- /tests/test_bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/test_bits.py -------------------------------------------------------------------------------- /tests/test_compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/test_compression.py -------------------------------------------------------------------------------- /tests/test_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/test_crypto.py -------------------------------------------------------------------------------- /tests/test_disasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/test_disasm.py -------------------------------------------------------------------------------- /tests/test_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/test_hash.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/test_pe.py -------------------------------------------------------------------------------- /tests/test_procmem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/test_procmem.py -------------------------------------------------------------------------------- /tests/test_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/test_string.py -------------------------------------------------------------------------------- /tests/test_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/test_structure.py -------------------------------------------------------------------------------- /tests/test_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/test_verify.py -------------------------------------------------------------------------------- /tests/test_winhdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/tests/test_winhdr.py -------------------------------------------------------------------------------- /venv/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/venv/bin/activate -------------------------------------------------------------------------------- /venv/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/venv/bin/activate.csh -------------------------------------------------------------------------------- /venv/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/venv/bin/activate.fish -------------------------------------------------------------------------------- /venv/bin/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/venv/bin/python -------------------------------------------------------------------------------- /venv/bin/python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/venv/bin/python3 -------------------------------------------------------------------------------- /venv/lib64: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatching/roach/HEAD/venv/pyvenv.cfg --------------------------------------------------------------------------------