├── .gitignore ├── LICENSE ├── Module.manifest ├── README.md ├── data ├── README.txt ├── build.xml ├── languages │ ├── skel.cspec │ ├── skel.ldefs │ ├── skel.opinion │ ├── skel.pspec │ ├── skel.sinc │ └── skel.slaspec └── sleighArgs.txt ├── extension.properties ├── ghidra_scripts └── X64DbgExport.java └── src ├── main ├── help │ └── help │ │ ├── TOC_Source.xml │ │ ├── shared │ │ └── Frontpage.css │ │ └── topics │ │ └── ghidrax64dbg │ │ └── help.html ├── java │ └── ghidrax64dbg │ │ └── GhidraX64DbgPlugin.java └── resources │ └── images │ └── README.txt └── test └── java └── README.test.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/LICENSE -------------------------------------------------------------------------------- /Module.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/README.md -------------------------------------------------------------------------------- /data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/data/README.txt -------------------------------------------------------------------------------- /data/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/data/build.xml -------------------------------------------------------------------------------- /data/languages/skel.cspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/data/languages/skel.cspec -------------------------------------------------------------------------------- /data/languages/skel.ldefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/data/languages/skel.ldefs -------------------------------------------------------------------------------- /data/languages/skel.opinion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/data/languages/skel.opinion -------------------------------------------------------------------------------- /data/languages/skel.pspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/data/languages/skel.pspec -------------------------------------------------------------------------------- /data/languages/skel.sinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/data/languages/skel.sinc -------------------------------------------------------------------------------- /data/languages/skel.slaspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/data/languages/skel.slaspec -------------------------------------------------------------------------------- /data/sleighArgs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/data/sleighArgs.txt -------------------------------------------------------------------------------- /extension.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/extension.properties -------------------------------------------------------------------------------- /ghidra_scripts/X64DbgExport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/ghidra_scripts/X64DbgExport.java -------------------------------------------------------------------------------- /src/main/help/help/TOC_Source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/src/main/help/help/TOC_Source.xml -------------------------------------------------------------------------------- /src/main/help/help/shared/Frontpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/src/main/help/help/shared/Frontpage.css -------------------------------------------------------------------------------- /src/main/help/help/topics/ghidrax64dbg/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/src/main/help/help/topics/ghidrax64dbg/help.html -------------------------------------------------------------------------------- /src/main/java/ghidrax64dbg/GhidraX64DbgPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/src/main/java/ghidrax64dbg/GhidraX64DbgPlugin.java -------------------------------------------------------------------------------- /src/main/resources/images/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/src/main/resources/images/README.txt -------------------------------------------------------------------------------- /src/test/java/README.test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revolver-ocelot-saa/GhidraX64Dbg/HEAD/src/test/java/README.test.txt --------------------------------------------------------------------------------