├── .gitignore ├── LICENSE ├── Readme.md ├── automation └── batch.py ├── examples └── locate_cve_2019_3568.py ├── hxtb.py ├── hxtb_shell.py ├── hxtbshell_queries ├── dump_strings.tbq ├── find_loops.tbq ├── memcpy_to_stack.tbq ├── realloc_find_leak.tbq ├── scan_winhttpsetoption.tbq └── show_calls.tbq ├── interactive └── interactive.py └── rsrc ├── calls.png ├── copy_loop.png ├── hxtbshell.png ├── if_stmt.png ├── loops.png ├── signed_ops.png └── toolbox.gif /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/Readme.md -------------------------------------------------------------------------------- /automation/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/automation/batch.py -------------------------------------------------------------------------------- /examples/locate_cve_2019_3568.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/examples/locate_cve_2019_3568.py -------------------------------------------------------------------------------- /hxtb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/hxtb.py -------------------------------------------------------------------------------- /hxtb_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/hxtb_shell.py -------------------------------------------------------------------------------- /hxtbshell_queries/dump_strings.tbq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/hxtbshell_queries/dump_strings.tbq -------------------------------------------------------------------------------- /hxtbshell_queries/find_loops.tbq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/hxtbshell_queries/find_loops.tbq -------------------------------------------------------------------------------- /hxtbshell_queries/memcpy_to_stack.tbq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/hxtbshell_queries/memcpy_to_stack.tbq -------------------------------------------------------------------------------- /hxtbshell_queries/realloc_find_leak.tbq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/hxtbshell_queries/realloc_find_leak.tbq -------------------------------------------------------------------------------- /hxtbshell_queries/scan_winhttpsetoption.tbq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/hxtbshell_queries/scan_winhttpsetoption.tbq -------------------------------------------------------------------------------- /hxtbshell_queries/show_calls.tbq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/hxtbshell_queries/show_calls.tbq -------------------------------------------------------------------------------- /interactive/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/interactive/interactive.py -------------------------------------------------------------------------------- /rsrc/calls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/rsrc/calls.png -------------------------------------------------------------------------------- /rsrc/copy_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/rsrc/copy_loop.png -------------------------------------------------------------------------------- /rsrc/hxtbshell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/rsrc/hxtbshell.png -------------------------------------------------------------------------------- /rsrc/if_stmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/rsrc/if_stmt.png -------------------------------------------------------------------------------- /rsrc/loops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/rsrc/loops.png -------------------------------------------------------------------------------- /rsrc/signed_ops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/rsrc/signed_ops.png -------------------------------------------------------------------------------- /rsrc/toolbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/HexraysToolbox/HEAD/rsrc/toolbox.gif --------------------------------------------------------------------------------