├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── addnop.py ├── bin_write.py ├── brute_force_disassembler.py ├── brute_force_mapper.py ├── context.py ├── disassembler.py ├── icount.py ├── mapper.py ├── msearch.py ├── multiverse.py ├── parse_popgm.sh ├── rewrite.py ├── runtime.py ├── simplest.c ├── translator.py ├── x64_assembler.py ├── x64_populate_gm.c ├── x64_runtime.py ├── x64_translator.py ├── x86_assembler.py ├── x86_populate_gm.c ├── x86_runtime.py └── x86_translator.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/README.md -------------------------------------------------------------------------------- /addnop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/addnop.py -------------------------------------------------------------------------------- /bin_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/bin_write.py -------------------------------------------------------------------------------- /brute_force_disassembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/brute_force_disassembler.py -------------------------------------------------------------------------------- /brute_force_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/brute_force_mapper.py -------------------------------------------------------------------------------- /context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/context.py -------------------------------------------------------------------------------- /disassembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/disassembler.py -------------------------------------------------------------------------------- /icount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/icount.py -------------------------------------------------------------------------------- /mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/mapper.py -------------------------------------------------------------------------------- /msearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/msearch.py -------------------------------------------------------------------------------- /multiverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/multiverse.py -------------------------------------------------------------------------------- /parse_popgm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/parse_popgm.sh -------------------------------------------------------------------------------- /rewrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/rewrite.py -------------------------------------------------------------------------------- /runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/runtime.py -------------------------------------------------------------------------------- /simplest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/simplest.c -------------------------------------------------------------------------------- /translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/translator.py -------------------------------------------------------------------------------- /x64_assembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/x64_assembler.py -------------------------------------------------------------------------------- /x64_populate_gm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/x64_populate_gm.c -------------------------------------------------------------------------------- /x64_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/x64_runtime.py -------------------------------------------------------------------------------- /x64_translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/x64_translator.py -------------------------------------------------------------------------------- /x86_assembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/x86_assembler.py -------------------------------------------------------------------------------- /x86_populate_gm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/x86_populate_gm.c -------------------------------------------------------------------------------- /x86_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/x86_runtime.py -------------------------------------------------------------------------------- /x86_translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utds3lab/multiverse/HEAD/x86_translator.py --------------------------------------------------------------------------------