├── AES-GCM.go ├── AtomName.go.tmp ├── CallBack.txt ├── ClipBoard.go.tmp ├── README.md ├── base64.go ├── clash.js ├── crypt ├── go.mod └── main.go ├── disableAdapter.cs ├── dll-loader └── main.go ├── exec-cmd.go ├── exec.go ├── garble ├── golang-dll ├── build.txt ├── export.go ├── go.mod └── go.sum ├── hashloader.go ├── loader.go ├── loader_tmp.go ├── messapi.txt ├── ntdll.txt ├── otp.go ├── popcalcASM ├── asm.s ├── go.mod └── main.go ├── ptr2list.go ├── sha.go ├── vm_detect.cpp └── writeMem.go /AES-GCM.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/AES-GCM.go -------------------------------------------------------------------------------- /AtomName.go.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/AtomName.go.tmp -------------------------------------------------------------------------------- /CallBack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/CallBack.txt -------------------------------------------------------------------------------- /ClipBoard.go.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/ClipBoard.go.tmp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Doge-Misc 2 | 杂 物 收 纳 3 | 4 | 既然是杂物便没有那么多规矩。 5 | -------------------------------------------------------------------------------- /base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/base64.go -------------------------------------------------------------------------------- /clash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/clash.js -------------------------------------------------------------------------------- /crypt/go.mod: -------------------------------------------------------------------------------- 1 | module cryptt 2 | 3 | go 1.19 4 | -------------------------------------------------------------------------------- /crypt/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/crypt/main.go -------------------------------------------------------------------------------- /disableAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/disableAdapter.cs -------------------------------------------------------------------------------- /dll-loader/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/dll-loader/main.go -------------------------------------------------------------------------------- /exec-cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/exec-cmd.go -------------------------------------------------------------------------------- /exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/exec.go -------------------------------------------------------------------------------- /garble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/garble -------------------------------------------------------------------------------- /golang-dll/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/golang-dll/build.txt -------------------------------------------------------------------------------- /golang-dll/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/golang-dll/export.go -------------------------------------------------------------------------------- /golang-dll/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/golang-dll/go.mod -------------------------------------------------------------------------------- /golang-dll/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/golang-dll/go.sum -------------------------------------------------------------------------------- /hashloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/hashloader.go -------------------------------------------------------------------------------- /loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/loader.go -------------------------------------------------------------------------------- /loader_tmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/loader_tmp.go -------------------------------------------------------------------------------- /messapi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/messapi.txt -------------------------------------------------------------------------------- /ntdll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/ntdll.txt -------------------------------------------------------------------------------- /otp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/otp.go -------------------------------------------------------------------------------- /popcalcASM/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/popcalcASM/asm.s -------------------------------------------------------------------------------- /popcalcASM/go.mod: -------------------------------------------------------------------------------- 1 | module popcalc 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /popcalcASM/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/popcalcASM/main.go -------------------------------------------------------------------------------- /ptr2list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/ptr2list.go -------------------------------------------------------------------------------- /sha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/sha.go -------------------------------------------------------------------------------- /vm_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/vm_detect.cpp -------------------------------------------------------------------------------- /writeMem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timwhitez/Doge-Misc/HEAD/writeMem.go --------------------------------------------------------------------------------