├── .gitignore ├── LICENCE.txt ├── README.md ├── beepexample.py ├── dobby ├── __init__.py ├── dobby.py ├── dobby_const.py ├── dobby_remote.py ├── dobby_triton.py ├── dobby_types.py ├── dobby_unicorn.py ├── interface.py ├── reversetaint.py ├── winsys.py └── x86const.py ├── other_tools ├── side_utils.py └── uni_ident_test.py └── tester ├── Makefile ├── Test2 ├── .gitignore ├── Test2.c ├── Test2.sln ├── Test2.vcxproj ├── Test2.vcxproj.filters └── asm_code.asm ├── tester.S └── tester.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/README.md -------------------------------------------------------------------------------- /beepexample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/beepexample.py -------------------------------------------------------------------------------- /dobby/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/dobby/__init__.py -------------------------------------------------------------------------------- /dobby/dobby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/dobby/dobby.py -------------------------------------------------------------------------------- /dobby/dobby_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/dobby/dobby_const.py -------------------------------------------------------------------------------- /dobby/dobby_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/dobby/dobby_remote.py -------------------------------------------------------------------------------- /dobby/dobby_triton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/dobby/dobby_triton.py -------------------------------------------------------------------------------- /dobby/dobby_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/dobby/dobby_types.py -------------------------------------------------------------------------------- /dobby/dobby_unicorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/dobby/dobby_unicorn.py -------------------------------------------------------------------------------- /dobby/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/dobby/interface.py -------------------------------------------------------------------------------- /dobby/reversetaint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/dobby/reversetaint.py -------------------------------------------------------------------------------- /dobby/winsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/dobby/winsys.py -------------------------------------------------------------------------------- /dobby/x86const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/dobby/x86const.py -------------------------------------------------------------------------------- /other_tools/side_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/other_tools/side_utils.py -------------------------------------------------------------------------------- /other_tools/uni_ident_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/other_tools/uni_ident_test.py -------------------------------------------------------------------------------- /tester/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/tester/Makefile -------------------------------------------------------------------------------- /tester/Test2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/tester/Test2/.gitignore -------------------------------------------------------------------------------- /tester/Test2/Test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/tester/Test2/Test2.c -------------------------------------------------------------------------------- /tester/Test2/Test2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/tester/Test2/Test2.sln -------------------------------------------------------------------------------- /tester/Test2/Test2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/tester/Test2/Test2.vcxproj -------------------------------------------------------------------------------- /tester/Test2/Test2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/tester/Test2/Test2.vcxproj.filters -------------------------------------------------------------------------------- /tester/Test2/asm_code.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/tester/Test2/asm_code.asm -------------------------------------------------------------------------------- /tester/tester.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/tester/tester.S -------------------------------------------------------------------------------- /tester/tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordan9001/dobby2/HEAD/tester/tester.c --------------------------------------------------------------------------------