├── .gitignore ├── GoDHijack_x64.exe ├── GoDHijack_x86.exe ├── README.md ├── bin └── .DS_Store ├── filetest ├── 1 │ ├── MpClient.dll │ └── MpCmdRun.exe ├── 1.exe ├── 2.exe ├── 3.exe ├── MpClient.dll └── MpCmdRun.exe ├── image-1.png ├── image-2.png ├── image-3.png ├── image.png └── src ├── GoDHijack-main.zip └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | /.DS_Store -------------------------------------------------------------------------------- /GoDHijack_x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/GoDHijack_x64.exe -------------------------------------------------------------------------------- /GoDHijack_x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/GoDHijack_x86.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/README.md -------------------------------------------------------------------------------- /bin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/bin/.DS_Store -------------------------------------------------------------------------------- /filetest/1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/filetest/1.exe -------------------------------------------------------------------------------- /filetest/1/MpClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/filetest/1/MpClient.dll -------------------------------------------------------------------------------- /filetest/1/MpCmdRun.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/filetest/1/MpCmdRun.exe -------------------------------------------------------------------------------- /filetest/2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/filetest/2.exe -------------------------------------------------------------------------------- /filetest/3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/filetest/3.exe -------------------------------------------------------------------------------- /filetest/MpClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/filetest/MpClient.dll -------------------------------------------------------------------------------- /filetest/MpCmdRun.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/filetest/MpCmdRun.exe -------------------------------------------------------------------------------- /image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/image-1.png -------------------------------------------------------------------------------- /image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/image-2.png -------------------------------------------------------------------------------- /image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/image-3.png -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/image.png -------------------------------------------------------------------------------- /src/GoDHijack-main.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m7rick/GoDhijacking/HEAD/src/GoDHijack-main.zip -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- 1 | go mod tidy 2 | 3 | 代码go写的,还有很多地方可以去优化。 4 | --------------------------------------------------------------------------------