├── .gitignore ├── LICENSE ├── imgs └── 1.gif ├── novmpy.py ├── novmpy ├── __init__.py ├── bridge.py ├── handler.py ├── match_helper.py ├── ui.py ├── views │ ├── hview.py │ └── vtil_graph.py ├── vm.py ├── vm_const.py ├── vm_lifter.py └── x86_deobf.py ├── readme.md ├── requirements.txt └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/LICENSE -------------------------------------------------------------------------------- /imgs/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/imgs/1.gif -------------------------------------------------------------------------------- /novmpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/novmpy.py -------------------------------------------------------------------------------- /novmpy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /novmpy/bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/novmpy/bridge.py -------------------------------------------------------------------------------- /novmpy/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/novmpy/handler.py -------------------------------------------------------------------------------- /novmpy/match_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/novmpy/match_helper.py -------------------------------------------------------------------------------- /novmpy/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/novmpy/ui.py -------------------------------------------------------------------------------- /novmpy/views/hview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/novmpy/views/hview.py -------------------------------------------------------------------------------- /novmpy/views/vtil_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/novmpy/views/vtil_graph.py -------------------------------------------------------------------------------- /novmpy/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/novmpy/vm.py -------------------------------------------------------------------------------- /novmpy/vm_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/novmpy/vm_const.py -------------------------------------------------------------------------------- /novmpy/vm_lifter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/novmpy/vm_lifter.py -------------------------------------------------------------------------------- /novmpy/x86_deobf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/novmpy/x86_deobf.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cle 2 | capstone 3 | unicorn -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wallds/NoVmpy/HEAD/test.py --------------------------------------------------------------------------------