├── IMG.cpp ├── IMG.h ├── INS.cpp ├── INS.h ├── Python_Pin.cpp ├── README.md ├── REG.cpp ├── REG.h ├── RTN.cpp ├── RTN.h ├── SYS.cpp ├── SYS.h ├── TRACE.cpp ├── TRACE.h ├── examples ├── call_chain.py ├── first_10_instructions.py ├── heap_check.cpp ├── heap_check_uaf.py ├── img_loads.py ├── ins_count.py ├── invalid_free_finder.py ├── map_text_segment.py ├── odd_info.py ├── rtn.py ├── strace.py └── uaf_finder.py ├── makefile ├── makefile.rules ├── python_pin.h ├── status ├── img.txt ├── ins.txt └── parser.py ├── talk └── talk.pdf /IMG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/IMG.cpp -------------------------------------------------------------------------------- /IMG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/IMG.h -------------------------------------------------------------------------------- /INS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/INS.cpp -------------------------------------------------------------------------------- /INS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/INS.h -------------------------------------------------------------------------------- /Python_Pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/Python_Pin.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/README.md -------------------------------------------------------------------------------- /REG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/REG.cpp -------------------------------------------------------------------------------- /REG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/REG.h -------------------------------------------------------------------------------- /RTN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/RTN.cpp -------------------------------------------------------------------------------- /RTN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/RTN.h -------------------------------------------------------------------------------- /SYS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/SYS.cpp -------------------------------------------------------------------------------- /SYS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/SYS.h -------------------------------------------------------------------------------- /TRACE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/TRACE.cpp -------------------------------------------------------------------------------- /TRACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/TRACE.h -------------------------------------------------------------------------------- /examples/call_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/examples/call_chain.py -------------------------------------------------------------------------------- /examples/first_10_instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/examples/first_10_instructions.py -------------------------------------------------------------------------------- /examples/heap_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/examples/heap_check.cpp -------------------------------------------------------------------------------- /examples/heap_check_uaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/examples/heap_check_uaf.py -------------------------------------------------------------------------------- /examples/img_loads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/examples/img_loads.py -------------------------------------------------------------------------------- /examples/ins_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/examples/ins_count.py -------------------------------------------------------------------------------- /examples/invalid_free_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/examples/invalid_free_finder.py -------------------------------------------------------------------------------- /examples/map_text_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/examples/map_text_segment.py -------------------------------------------------------------------------------- /examples/odd_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/examples/odd_info.py -------------------------------------------------------------------------------- /examples/rtn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/examples/rtn.py -------------------------------------------------------------------------------- /examples/strace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/examples/strace.py -------------------------------------------------------------------------------- /examples/uaf_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/examples/uaf_finder.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/makefile -------------------------------------------------------------------------------- /makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/makefile.rules -------------------------------------------------------------------------------- /python_pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/python_pin.h -------------------------------------------------------------------------------- /status/img.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/status/img.txt -------------------------------------------------------------------------------- /status/ins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/status/ins.txt -------------------------------------------------------------------------------- /status/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/status/parser.py -------------------------------------------------------------------------------- /talk: -------------------------------------------------------------------------------- 1 | https://www.dropbox.com/sh/00xscamfbhpi5he/AABlLH__FOvJh_YfHmtVsDPia?lst=#/ 2 | -------------------------------------------------------------------------------- /talk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blankwall/Python_Pin/HEAD/talk.pdf --------------------------------------------------------------------------------