├── .gitignore ├── LICENSE ├── OverwatchDumpFix.sln ├── OverwatchDumpFix ├── OverwatchDumpFix.vcxproj ├── OverwatchDumpFix.vcxproj.filters ├── anti_debug_util.cpp ├── anti_debug_util.h ├── fix_dump.cpp ├── fix_dump.h ├── import_deobfuscation.cpp ├── import_deobfuscation.h ├── memory.cpp ├── memory.h ├── ntdll.h ├── pe_header.cpp ├── pe_header.h ├── plugin.cpp ├── plugin.h ├── pluginmain.cpp ├── pluginmain.h └── pluginsdk │ ├── DeviceNameResolver │ ├── DeviceNameResolver.h │ ├── DeviceNameResolver_x64.a │ ├── DeviceNameResolver_x64.lib │ ├── DeviceNameResolver_x86.a │ └── DeviceNameResolver_x86.lib │ ├── TitanEngine │ ├── TitanEngine.h │ ├── TitanEngine_x64.a │ ├── TitanEngine_x64.lib │ ├── TitanEngine_x86.a │ └── TitanEngine_x86.lib │ ├── XEDParse │ ├── XEDParse.h │ ├── XEDParse_x64.a │ ├── XEDParse_x64.lib │ ├── XEDParse_x86.a │ └── XEDParse_x86.lib │ ├── _dbgfunctions.h │ ├── _plugin_types.h │ ├── _plugins.h │ ├── _scriptapi.h │ ├── _scriptapi_argument.h │ ├── _scriptapi_assembler.h │ ├── _scriptapi_bookmark.h │ ├── _scriptapi_comment.h │ ├── _scriptapi_debug.h │ ├── _scriptapi_flag.h │ ├── _scriptapi_function.h │ ├── _scriptapi_gui.h │ ├── _scriptapi_label.h │ ├── _scriptapi_memory.h │ ├── _scriptapi_misc.h │ ├── _scriptapi_module.h │ ├── _scriptapi_pattern.h │ ├── _scriptapi_register.h │ ├── _scriptapi_stack.h │ ├── _scriptapi_symbol.h │ ├── bridgegraph.h │ ├── bridgelist.h │ ├── bridgemain.h │ ├── dbghelp │ ├── dbghelp.h │ ├── dbghelp_x64.a │ └── dbghelp_x86.a │ ├── jansson │ ├── jansson.h │ ├── jansson_config.h │ ├── jansson_x64.a │ ├── jansson_x64.lib │ ├── jansson_x64dbg.h │ ├── jansson_x86.a │ └── jansson_x86.lib │ ├── lz4 │ ├── lz4.h │ ├── lz4_x64.a │ ├── lz4_x64.lib │ ├── lz4_x86.a │ ├── lz4_x86.lib │ ├── lz4file.h │ └── lz4hc.h │ ├── x32bridge.lib │ ├── x32dbg.lib │ ├── x64bridge.lib │ ├── x64dbg.lib │ └── yara │ ├── yara.h │ ├── yara │ ├── ahocorasick.h │ ├── arena.h │ ├── atoms.h │ ├── compiler.h │ ├── elf.h │ ├── error.h │ ├── exec.h │ ├── exefiles.h │ ├── filemap.h │ ├── globals.h │ ├── hash.h │ ├── hex_lexer.h │ ├── integers.h │ ├── lexer.h │ ├── libyara.h │ ├── limits.h │ ├── mem.h │ ├── modules.h │ ├── object.h │ ├── parser.h │ ├── pe.h │ ├── proc.h │ ├── re.h │ ├── re_lexer.h │ ├── rules.h │ ├── scan.h │ ├── sizedstr.h │ ├── stream.h │ ├── strutils.h │ ├── threading.h │ ├── types.h │ └── utils.h │ ├── yara_x64.lib │ └── yara_x86.lib ├── README.md ├── hde ├── LICENSE ├── hde.h ├── hde32.cpp ├── hde32.h ├── hde64.cpp ├── hde64.h ├── hde_stdint.h ├── table32.h └── table64.h ├── ida scripts ├── correct_invalid_RVAs.py └── reveal_blizzard_strings.py └── version statistics.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/LICENSE -------------------------------------------------------------------------------- /OverwatchDumpFix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix.sln -------------------------------------------------------------------------------- /OverwatchDumpFix/OverwatchDumpFix.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/OverwatchDumpFix.vcxproj -------------------------------------------------------------------------------- /OverwatchDumpFix/OverwatchDumpFix.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/OverwatchDumpFix.vcxproj.filters -------------------------------------------------------------------------------- /OverwatchDumpFix/anti_debug_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/anti_debug_util.cpp -------------------------------------------------------------------------------- /OverwatchDumpFix/anti_debug_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/anti_debug_util.h -------------------------------------------------------------------------------- /OverwatchDumpFix/fix_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/fix_dump.cpp -------------------------------------------------------------------------------- /OverwatchDumpFix/fix_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/fix_dump.h -------------------------------------------------------------------------------- /OverwatchDumpFix/import_deobfuscation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/import_deobfuscation.cpp -------------------------------------------------------------------------------- /OverwatchDumpFix/import_deobfuscation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/import_deobfuscation.h -------------------------------------------------------------------------------- /OverwatchDumpFix/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/memory.cpp -------------------------------------------------------------------------------- /OverwatchDumpFix/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/memory.h -------------------------------------------------------------------------------- /OverwatchDumpFix/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/ntdll.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pe_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pe_header.cpp -------------------------------------------------------------------------------- /OverwatchDumpFix/pe_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pe_header.h -------------------------------------------------------------------------------- /OverwatchDumpFix/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/plugin.cpp -------------------------------------------------------------------------------- /OverwatchDumpFix/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/plugin.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginmain.cpp -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginmain.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/DeviceNameResolver/DeviceNameResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/DeviceNameResolver/DeviceNameResolver.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/DeviceNameResolver/DeviceNameResolver_x64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/DeviceNameResolver/DeviceNameResolver_x64.a -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/DeviceNameResolver/DeviceNameResolver_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/DeviceNameResolver/DeviceNameResolver_x64.lib -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/DeviceNameResolver/DeviceNameResolver_x86.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/DeviceNameResolver/DeviceNameResolver_x86.a -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/DeviceNameResolver/DeviceNameResolver_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/DeviceNameResolver/DeviceNameResolver_x86.lib -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/TitanEngine/TitanEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/TitanEngine/TitanEngine.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/TitanEngine/TitanEngine_x64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/TitanEngine/TitanEngine_x64.a -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/TitanEngine/TitanEngine_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/TitanEngine/TitanEngine_x64.lib -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/TitanEngine/TitanEngine_x86.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/TitanEngine/TitanEngine_x86.a -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/TitanEngine/TitanEngine_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/TitanEngine/TitanEngine_x86.lib -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/XEDParse/XEDParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/XEDParse/XEDParse.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/XEDParse/XEDParse_x64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/XEDParse/XEDParse_x64.a -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/XEDParse/XEDParse_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/XEDParse/XEDParse_x64.lib -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/XEDParse/XEDParse_x86.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/XEDParse/XEDParse_x86.a -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/XEDParse/XEDParse_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/XEDParse/XEDParse_x86.lib -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_dbgfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_dbgfunctions.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_plugin_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_plugin_types.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_plugins.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_argument.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_assembler.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_bookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_bookmark.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_comment.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_debug.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_flag.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_function.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_gui.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_label.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_memory.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_misc.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_module.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_pattern.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_register.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_stack.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/_scriptapi_symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/_scriptapi_symbol.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/bridgegraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/bridgegraph.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/bridgelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/bridgelist.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/bridgemain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/bridgemain.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/dbghelp/dbghelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/dbghelp/dbghelp.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/dbghelp/dbghelp_x64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/dbghelp/dbghelp_x64.a -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/dbghelp/dbghelp_x86.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/dbghelp/dbghelp_x86.a -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/jansson/jansson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/jansson/jansson.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/jansson/jansson_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/jansson/jansson_config.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/jansson/jansson_x64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/jansson/jansson_x64.a -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/jansson/jansson_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/jansson/jansson_x64.lib -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/jansson/jansson_x64dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/jansson/jansson_x64dbg.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/jansson/jansson_x86.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/jansson/jansson_x86.a -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/jansson/jansson_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/jansson/jansson_x86.lib -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/lz4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/lz4/lz4.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/lz4/lz4_x64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/lz4/lz4_x64.a -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/lz4/lz4_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/lz4/lz4_x64.lib -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/lz4/lz4_x86.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/lz4/lz4_x86.a -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/lz4/lz4_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/lz4/lz4_x86.lib -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/lz4/lz4file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/lz4/lz4file.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/lz4/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/lz4/lz4hc.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/x32bridge.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/x32bridge.lib -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/x32dbg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/x32dbg.lib -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/x64bridge.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/x64bridge.lib -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/x64dbg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/x64dbg.lib -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/ahocorasick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/ahocorasick.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/arena.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/atoms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/atoms.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/compiler.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/elf.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/error.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/exec.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/exefiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/exefiles.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/filemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/filemap.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/globals.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/hash.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/hex_lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/hex_lexer.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/integers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/integers.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/lexer.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/libyara.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/libyara.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/limits.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/mem.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/modules.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/object.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/parser.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/pe.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/proc.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/re.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/re_lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/re_lexer.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/rules.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/scan.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/sizedstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/sizedstr.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/stream.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/strutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/strutils.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/threading.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/types.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara/utils.h -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara_x64.lib -------------------------------------------------------------------------------- /OverwatchDumpFix/pluginsdk/yara/yara_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/OverwatchDumpFix/pluginsdk/yara/yara_x86.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/README.md -------------------------------------------------------------------------------- /hde/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/hde/LICENSE -------------------------------------------------------------------------------- /hde/hde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/hde/hde.h -------------------------------------------------------------------------------- /hde/hde32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/hde/hde32.cpp -------------------------------------------------------------------------------- /hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/hde/hde32.h -------------------------------------------------------------------------------- /hde/hde64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/hde/hde64.cpp -------------------------------------------------------------------------------- /hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/hde/hde64.h -------------------------------------------------------------------------------- /hde/hde_stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/hde/hde_stdint.h -------------------------------------------------------------------------------- /hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/hde/table32.h -------------------------------------------------------------------------------- /hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/hde/table64.h -------------------------------------------------------------------------------- /ida scripts/correct_invalid_RVAs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/ida scripts/correct_invalid_RVAs.py -------------------------------------------------------------------------------- /ida scripts/reveal_blizzard_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/ida scripts/reveal_blizzard_strings.py -------------------------------------------------------------------------------- /version statistics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/changeofpace/Overwatch-Dump-Fix/HEAD/version statistics.txt --------------------------------------------------------------------------------