├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── disas ├── capstone_32.py ├── capstone_64.py ├── disas_32.sh └── disas_64.sh ├── gui ├── __init__.py └── gui.py ├── injector.c ├── mutator.py ├── pyutil ├── __init__.py ├── colors.py └── progress.py ├── references ├── domas_breaking_the_x86_isa.pdf ├── domas_breaking_the_x86_isa_wp.pdf ├── sandsifter.gif ├── screenshot.png └── summarizer.png ├── sifter.py └── summarize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/README.md -------------------------------------------------------------------------------- /disas/capstone_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/disas/capstone_32.py -------------------------------------------------------------------------------- /disas/capstone_64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/disas/capstone_64.py -------------------------------------------------------------------------------- /disas/disas_32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/disas/disas_32.sh -------------------------------------------------------------------------------- /disas/disas_64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/disas/disas_64.sh -------------------------------------------------------------------------------- /gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/gui/gui.py -------------------------------------------------------------------------------- /injector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/injector.c -------------------------------------------------------------------------------- /mutator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/mutator.py -------------------------------------------------------------------------------- /pyutil/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyutil/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/pyutil/colors.py -------------------------------------------------------------------------------- /pyutil/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/pyutil/progress.py -------------------------------------------------------------------------------- /references/domas_breaking_the_x86_isa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/references/domas_breaking_the_x86_isa.pdf -------------------------------------------------------------------------------- /references/domas_breaking_the_x86_isa_wp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/references/domas_breaking_the_x86_isa_wp.pdf -------------------------------------------------------------------------------- /references/sandsifter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/references/sandsifter.gif -------------------------------------------------------------------------------- /references/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/references/screenshot.png -------------------------------------------------------------------------------- /references/summarizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/references/summarizer.png -------------------------------------------------------------------------------- /sifter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/sifter.py -------------------------------------------------------------------------------- /summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laura240406/sandsifter/HEAD/summarize.py --------------------------------------------------------------------------------