├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── pydis ├── __init__.py ├── decoder.py ├── formatter.py ├── generate_types.py ├── instruction.py ├── interface.py ├── types.py └── zydis_types.py ├── requirements.txt ├── scripts └── pydisinfo ├── setup.py └── tests ├── __init__.py ├── test_decoder.py ├── test_example_code.py ├── test_formatter.py ├── test_instruction.py └── test_operand.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/README.md -------------------------------------------------------------------------------- /pydis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/pydis/__init__.py -------------------------------------------------------------------------------- /pydis/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/pydis/decoder.py -------------------------------------------------------------------------------- /pydis/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/pydis/formatter.py -------------------------------------------------------------------------------- /pydis/generate_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/pydis/generate_types.py -------------------------------------------------------------------------------- /pydis/instruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/pydis/instruction.py -------------------------------------------------------------------------------- /pydis/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/pydis/interface.py -------------------------------------------------------------------------------- /pydis/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/pydis/types.py -------------------------------------------------------------------------------- /pydis/zydis_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/pydis/zydis_types.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/pydisinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/scripts/pydisinfo -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/tests/test_decoder.py -------------------------------------------------------------------------------- /tests/test_example_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/tests/test_example_code.py -------------------------------------------------------------------------------- /tests/test_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/tests/test_formatter.py -------------------------------------------------------------------------------- /tests/test_instruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/tests/test_instruction.py -------------------------------------------------------------------------------- /tests/test_operand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/novogen/pydis/HEAD/tests/test_operand.py --------------------------------------------------------------------------------