├── .github └── ISSUE_TEMPLATE │ ├── bug.yml │ └── config.yml ├── COPYING ├── CREDITS ├── README.md ├── ext_bn └── retsync │ ├── README.md │ ├── __init__.py │ ├── plugin.json │ ├── retsync │ ├── __init__.py │ ├── rsconfig.py │ └── rswidget.py │ └── sync.py ├── ext_gdb └── sync.py ├── ext_ghidra ├── .project ├── LICENCE ├── Module.manifest ├── build.gradle ├── data │ ├── README.txt │ ├── build.xml │ ├── languages │ │ ├── skel.cspec │ │ ├── skel.ldefs │ │ ├── skel.opinion │ │ ├── skel.pspec │ │ ├── skel.sinc │ │ └── skel.slaspec │ └── sleighArgs.txt ├── dist │ ├── ghidra_10.0.3_PUBLIC_20210913_retsync.zip │ ├── ghidra_10.0.4_PUBLIC_20211117_retsync.zip │ ├── ghidra_10.0_PUBLIC_20210629_retsync.zip │ ├── ghidra_10.1-BETA_PUBLIC_20211118_retsync.zip │ ├── ghidra_10.1.2_PUBLIC_20220213_retsync.zip │ ├── ghidra_10.1_PUBLIC_20211213_retsync.zip │ ├── ghidra_10.2_PUBLIC_20221108_retsync.zip │ ├── ghidra_11.4.2_PUBLIC_20250929_retsync.zip │ ├── ghidra_9.1.2_PUBLIC_20200910_retsync.zip │ ├── ghidra_9.2.1_PUBLIC_20210106_retsync.zip │ ├── ghidra_9.2.2_PUBLIC_20210120_retsync.zip │ ├── ghidra_9.2.3_PUBLIC_20210506_retsync.zip │ ├── ghidra_9.2.4_PUBLIC_20210531_retsync.zip │ └── ghidra_9.2_PUBLIC_20201116_retsync.zip ├── extension.properties ├── ghidra_scripts │ └── README.txt ├── lib │ ├── ini4j-0.5.4.jar │ ├── json-20190722.jar │ └── json-simple-1.1.1.jar ├── settings.gradle └── src │ └── main │ ├── help │ └── help │ │ ├── TOC_Source.xml │ │ ├── shared │ │ └── DefaultStyle.css │ │ └── topics │ │ └── retsync │ │ └── help.html │ ├── java │ └── retsync │ │ ├── ClientHandler.java │ │ ├── DebuggerDialects.java │ │ ├── ListenerBackground.java │ │ ├── LocalColorizerService.java │ │ ├── RequestHandler.java │ │ ├── RetSyncComponent.java │ │ └── RetSyncPlugin.java │ └── resources │ └── images │ └── README.txt ├── ext_ida ├── SyncPlugin.py └── retsync │ ├── __init__.py │ ├── broker.py │ ├── dispatcher.py │ ├── rsconfig.py │ └── syncrays.py ├── ext_lib └── sync.py ├── ext_lldb └── sync.py ├── ext_olly1 ├── Ollydbg.lib ├── SyncPlugin.sln ├── plugin.h ├── sync.c ├── syncplugin.vcxproj ├── tunnel.c └── tunnel.h ├── ext_olly2 ├── Ollydbg.lib ├── Sync.vcxproj ├── SyncPlugin.sln ├── plugin.h ├── sync.c ├── tunnel.c └── tunnel.h ├── ext_windbg └── sync │ ├── sync.sln │ └── sync │ ├── outputcallback.cpp │ ├── outputcallbacks.h │ ├── sync.cpp │ ├── sync.def │ ├── sync.h │ ├── sync.vcxproj │ ├── sync.vcxproj.filters │ ├── tunnel.cpp │ └── tunnel.h ├── ext_x64dbg ├── x64dbg_sync.sln └── x64dbg_sync │ ├── core.cpp │ ├── core.h │ ├── pluginsdk │ ├── _dbgfunctions.h │ ├── _plugin_types.h │ ├── _plugins.h │ ├── bridgegraph.h │ ├── bridgelist.h │ ├── bridgemain.h │ ├── commithash.txt │ ├── jansson │ │ ├── jansson.h │ │ ├── jansson_config.h │ │ ├── jansson_x64.a │ │ ├── jansson_x64.lib │ │ ├── jansson_x64dbg.h │ │ ├── jansson_x86.a │ │ └── jansson_x86.lib │ ├── x32bridge.lib │ ├── x32dbg.lib │ ├── x64bridge.lib │ └── x64dbg.lib │ ├── sync.cpp │ ├── sync.h │ ├── tunnel.cpp │ ├── tunnel.h │ ├── x64dbg_sync.vcxproj │ ├── x64dbg_sync.vcxproj.filters │ └── x64dbg_sync.vcxproj.user └── img ├── ghidra.png └── pipeline.png /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/CREDITS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/README.md -------------------------------------------------------------------------------- /ext_bn/retsync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_bn/retsync/README.md -------------------------------------------------------------------------------- /ext_bn/retsync/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_bn/retsync/__init__.py -------------------------------------------------------------------------------- /ext_bn/retsync/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_bn/retsync/plugin.json -------------------------------------------------------------------------------- /ext_bn/retsync/retsync/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext_bn/retsync/retsync/rsconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_bn/retsync/retsync/rsconfig.py -------------------------------------------------------------------------------- /ext_bn/retsync/retsync/rswidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_bn/retsync/retsync/rswidget.py -------------------------------------------------------------------------------- /ext_bn/retsync/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_bn/retsync/sync.py -------------------------------------------------------------------------------- /ext_gdb/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_gdb/sync.py -------------------------------------------------------------------------------- /ext_ghidra/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/.project -------------------------------------------------------------------------------- /ext_ghidra/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/LICENCE -------------------------------------------------------------------------------- /ext_ghidra/Module.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext_ghidra/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/build.gradle -------------------------------------------------------------------------------- /ext_ghidra/data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/data/README.txt -------------------------------------------------------------------------------- /ext_ghidra/data/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/data/build.xml -------------------------------------------------------------------------------- /ext_ghidra/data/languages/skel.cspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/data/languages/skel.cspec -------------------------------------------------------------------------------- /ext_ghidra/data/languages/skel.ldefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/data/languages/skel.ldefs -------------------------------------------------------------------------------- /ext_ghidra/data/languages/skel.opinion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/data/languages/skel.opinion -------------------------------------------------------------------------------- /ext_ghidra/data/languages/skel.pspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/data/languages/skel.pspec -------------------------------------------------------------------------------- /ext_ghidra/data/languages/skel.sinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/data/languages/skel.sinc -------------------------------------------------------------------------------- /ext_ghidra/data/languages/skel.slaspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/data/languages/skel.slaspec -------------------------------------------------------------------------------- /ext_ghidra/data/sleighArgs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/data/sleighArgs.txt -------------------------------------------------------------------------------- /ext_ghidra/dist/ghidra_10.0.3_PUBLIC_20210913_retsync.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/dist/ghidra_10.0.3_PUBLIC_20210913_retsync.zip -------------------------------------------------------------------------------- /ext_ghidra/dist/ghidra_10.0.4_PUBLIC_20211117_retsync.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/dist/ghidra_10.0.4_PUBLIC_20211117_retsync.zip -------------------------------------------------------------------------------- /ext_ghidra/dist/ghidra_10.0_PUBLIC_20210629_retsync.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/dist/ghidra_10.0_PUBLIC_20210629_retsync.zip -------------------------------------------------------------------------------- /ext_ghidra/dist/ghidra_10.1-BETA_PUBLIC_20211118_retsync.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/dist/ghidra_10.1-BETA_PUBLIC_20211118_retsync.zip -------------------------------------------------------------------------------- /ext_ghidra/dist/ghidra_10.1.2_PUBLIC_20220213_retsync.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/dist/ghidra_10.1.2_PUBLIC_20220213_retsync.zip -------------------------------------------------------------------------------- /ext_ghidra/dist/ghidra_10.1_PUBLIC_20211213_retsync.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/dist/ghidra_10.1_PUBLIC_20211213_retsync.zip -------------------------------------------------------------------------------- /ext_ghidra/dist/ghidra_10.2_PUBLIC_20221108_retsync.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/dist/ghidra_10.2_PUBLIC_20221108_retsync.zip -------------------------------------------------------------------------------- /ext_ghidra/dist/ghidra_11.4.2_PUBLIC_20250929_retsync.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/dist/ghidra_11.4.2_PUBLIC_20250929_retsync.zip -------------------------------------------------------------------------------- /ext_ghidra/dist/ghidra_9.1.2_PUBLIC_20200910_retsync.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/dist/ghidra_9.1.2_PUBLIC_20200910_retsync.zip -------------------------------------------------------------------------------- /ext_ghidra/dist/ghidra_9.2.1_PUBLIC_20210106_retsync.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/dist/ghidra_9.2.1_PUBLIC_20210106_retsync.zip -------------------------------------------------------------------------------- /ext_ghidra/dist/ghidra_9.2.2_PUBLIC_20210120_retsync.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/dist/ghidra_9.2.2_PUBLIC_20210120_retsync.zip -------------------------------------------------------------------------------- /ext_ghidra/dist/ghidra_9.2.3_PUBLIC_20210506_retsync.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/dist/ghidra_9.2.3_PUBLIC_20210506_retsync.zip -------------------------------------------------------------------------------- /ext_ghidra/dist/ghidra_9.2.4_PUBLIC_20210531_retsync.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/dist/ghidra_9.2.4_PUBLIC_20210531_retsync.zip -------------------------------------------------------------------------------- /ext_ghidra/dist/ghidra_9.2_PUBLIC_20201116_retsync.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/dist/ghidra_9.2_PUBLIC_20201116_retsync.zip -------------------------------------------------------------------------------- /ext_ghidra/extension.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/extension.properties -------------------------------------------------------------------------------- /ext_ghidra/ghidra_scripts/README.txt: -------------------------------------------------------------------------------- 1 | Java source directory to hold module-specific Ghidra scripts. 2 | -------------------------------------------------------------------------------- /ext_ghidra/lib/ini4j-0.5.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/lib/ini4j-0.5.4.jar -------------------------------------------------------------------------------- /ext_ghidra/lib/json-20190722.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/lib/json-20190722.jar -------------------------------------------------------------------------------- /ext_ghidra/lib/json-simple-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/lib/json-simple-1.1.1.jar -------------------------------------------------------------------------------- /ext_ghidra/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "retsync" 2 | -------------------------------------------------------------------------------- /ext_ghidra/src/main/help/help/TOC_Source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/src/main/help/help/TOC_Source.xml -------------------------------------------------------------------------------- /ext_ghidra/src/main/help/help/shared/DefaultStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/src/main/help/help/shared/DefaultStyle.css -------------------------------------------------------------------------------- /ext_ghidra/src/main/help/help/topics/retsync/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/src/main/help/help/topics/retsync/help.html -------------------------------------------------------------------------------- /ext_ghidra/src/main/java/retsync/ClientHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/src/main/java/retsync/ClientHandler.java -------------------------------------------------------------------------------- /ext_ghidra/src/main/java/retsync/DebuggerDialects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/src/main/java/retsync/DebuggerDialects.java -------------------------------------------------------------------------------- /ext_ghidra/src/main/java/retsync/ListenerBackground.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/src/main/java/retsync/ListenerBackground.java -------------------------------------------------------------------------------- /ext_ghidra/src/main/java/retsync/LocalColorizerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/src/main/java/retsync/LocalColorizerService.java -------------------------------------------------------------------------------- /ext_ghidra/src/main/java/retsync/RequestHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/src/main/java/retsync/RequestHandler.java -------------------------------------------------------------------------------- /ext_ghidra/src/main/java/retsync/RetSyncComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/src/main/java/retsync/RetSyncComponent.java -------------------------------------------------------------------------------- /ext_ghidra/src/main/java/retsync/RetSyncPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/src/main/java/retsync/RetSyncPlugin.java -------------------------------------------------------------------------------- /ext_ghidra/src/main/resources/images/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ghidra/src/main/resources/images/README.txt -------------------------------------------------------------------------------- /ext_ida/SyncPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ida/SyncPlugin.py -------------------------------------------------------------------------------- /ext_ida/retsync/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext_ida/retsync/broker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ida/retsync/broker.py -------------------------------------------------------------------------------- /ext_ida/retsync/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ida/retsync/dispatcher.py -------------------------------------------------------------------------------- /ext_ida/retsync/rsconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ida/retsync/rsconfig.py -------------------------------------------------------------------------------- /ext_ida/retsync/syncrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_ida/retsync/syncrays.py -------------------------------------------------------------------------------- /ext_lib/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_lib/sync.py -------------------------------------------------------------------------------- /ext_lldb/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_lldb/sync.py -------------------------------------------------------------------------------- /ext_olly1/Ollydbg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_olly1/Ollydbg.lib -------------------------------------------------------------------------------- /ext_olly1/SyncPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_olly1/SyncPlugin.sln -------------------------------------------------------------------------------- /ext_olly1/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_olly1/plugin.h -------------------------------------------------------------------------------- /ext_olly1/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_olly1/sync.c -------------------------------------------------------------------------------- /ext_olly1/syncplugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_olly1/syncplugin.vcxproj -------------------------------------------------------------------------------- /ext_olly1/tunnel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_olly1/tunnel.c -------------------------------------------------------------------------------- /ext_olly1/tunnel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_olly1/tunnel.h -------------------------------------------------------------------------------- /ext_olly2/Ollydbg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_olly2/Ollydbg.lib -------------------------------------------------------------------------------- /ext_olly2/Sync.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_olly2/Sync.vcxproj -------------------------------------------------------------------------------- /ext_olly2/SyncPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_olly2/SyncPlugin.sln -------------------------------------------------------------------------------- /ext_olly2/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_olly2/plugin.h -------------------------------------------------------------------------------- /ext_olly2/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_olly2/sync.c -------------------------------------------------------------------------------- /ext_olly2/tunnel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_olly2/tunnel.c -------------------------------------------------------------------------------- /ext_olly2/tunnel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_olly2/tunnel.h -------------------------------------------------------------------------------- /ext_windbg/sync/sync.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_windbg/sync/sync.sln -------------------------------------------------------------------------------- /ext_windbg/sync/sync/outputcallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_windbg/sync/sync/outputcallback.cpp -------------------------------------------------------------------------------- /ext_windbg/sync/sync/outputcallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_windbg/sync/sync/outputcallbacks.h -------------------------------------------------------------------------------- /ext_windbg/sync/sync/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_windbg/sync/sync/sync.cpp -------------------------------------------------------------------------------- /ext_windbg/sync/sync/sync.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_windbg/sync/sync/sync.def -------------------------------------------------------------------------------- /ext_windbg/sync/sync/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_windbg/sync/sync/sync.h -------------------------------------------------------------------------------- /ext_windbg/sync/sync/sync.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_windbg/sync/sync/sync.vcxproj -------------------------------------------------------------------------------- /ext_windbg/sync/sync/sync.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_windbg/sync/sync/sync.vcxproj.filters -------------------------------------------------------------------------------- /ext_windbg/sync/sync/tunnel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_windbg/sync/sync/tunnel.cpp -------------------------------------------------------------------------------- /ext_windbg/sync/sync/tunnel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_windbg/sync/sync/tunnel.h -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync.sln -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/core.cpp -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/core.h -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/_dbgfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/_dbgfunctions.h -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/_plugin_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/_plugin_types.h -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/_plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/_plugins.h -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/bridgegraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/bridgegraph.h -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/bridgelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/bridgelist.h -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/bridgemain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/bridgemain.h -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/commithash.txt: -------------------------------------------------------------------------------- 1 | b4a03a8009d94df67367ea4f72dd2581da299247 2 | -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/jansson/jansson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/jansson/jansson.h -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/jansson/jansson_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/jansson/jansson_config.h -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/jansson/jansson_x64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/jansson/jansson_x64.a -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/jansson/jansson_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/jansson/jansson_x64.lib -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/jansson/jansson_x64dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/jansson/jansson_x64dbg.h -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/jansson/jansson_x86.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/jansson/jansson_x86.a -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/jansson/jansson_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/jansson/jansson_x86.lib -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/x32bridge.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/x32bridge.lib -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/x32dbg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/x32dbg.lib -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/x64bridge.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/x64bridge.lib -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/pluginsdk/x64dbg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/pluginsdk/x64dbg.lib -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/sync.cpp -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/sync.h -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/tunnel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/tunnel.cpp -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/tunnel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/tunnel.h -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/x64dbg_sync.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/x64dbg_sync.vcxproj -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/x64dbg_sync.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/x64dbg_sync.vcxproj.filters -------------------------------------------------------------------------------- /ext_x64dbg/x64dbg_sync/x64dbg_sync.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/ext_x64dbg/x64dbg_sync/x64dbg_sync.vcxproj.user -------------------------------------------------------------------------------- /img/ghidra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/img/ghidra.png -------------------------------------------------------------------------------- /img/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootleg/ret-sync/HEAD/img/pipeline.png --------------------------------------------------------------------------------