├── Bypass ├── BananaPhone │ └── BananaPhone.go ├── CreateFiber │ └── CreateFiber.go ├── CreateThread │ └── CreateThread.go ├── CreateThreadNative │ └── CreateThreadNative.go ├── CreateThreatPoolWait │ └── CreateThreatPoolWait.go ├── EnumChildWindows │ └── EnumChildWindows.go ├── EnumPageFilesW │ └── EnumPageFilesW.go ├── EnumerateLoadedModules │ └── EnumerateLoadedModules.go ├── EtwpCreateEtwThread │ └── EtwpCreateEtwThread.go ├── HaloGate │ └── HaloGate.go ├── HeapAlloc │ └── HeapAlloc.go ├── Syscall │ └── Syscall.go └── UuidFromString │ └── UuidFromString.go ├── Doge-Gabh ├── Gabh │ ├── GetSsnByException.go │ ├── asm_x64.s │ ├── config.go │ ├── const.go │ ├── gabh.go │ ├── gate.go │ ├── knownDlls.go │ ├── perunsFart.go │ ├── remap.go │ ├── unhook.go │ ├── universal.go │ └── whisper.go └── eggreplace │ └── eggreplace.go ├── Go2bypass.go ├── Public ├── Bypass.go ├── EndecryptApi.go ├── FuncApi.go ├── HideConsole.go ├── Pubilc.go └── Random.go ├── README.md ├── ReBypass ├── CreateFiber │ └── CreateFiber.go ├── CreateThread │ └── CreateThread.go ├── CreateThreatPoolWait │ └── CreateThreatPoolWait.go ├── EnumChildWindows │ ├── CodeToStringShell.txt │ └── EnumChildWindows.go ├── EnumPageFilesW │ └── EnumPageFilesW.go ├── EnumerateLoadedModules │ └── EnumerateLoadedModules.go ├── Syscall-getssn │ ├── go.mod │ ├── go.sum │ └── mian.go ├── Syscall │ └── mian.go └── main.go ├── calc.bin ├── cmd ├── build.go └── root.go ├── endecrypt ├── AesCEC.go ├── QianKunBaGua.go └── Xor.go ├── go.mod ├── go.sum ├── ico.ico ├── lib ├── ico.manifest └── rsrc.exe └── template ├── CreateFiber ├── CreateThread ├── CreateThreatPoolWait ├── EnumChildWindows ├── EnumPageFilesW ├── EnumerateLoadedModules ├── EtwpCreateEtwThread ├── HaloGate ├── HeapAlloc ├── Syscall └── UuidFromString /Bypass/BananaPhone/BananaPhone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Bypass/BananaPhone/BananaPhone.go -------------------------------------------------------------------------------- /Bypass/CreateFiber/CreateFiber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Bypass/CreateFiber/CreateFiber.go -------------------------------------------------------------------------------- /Bypass/CreateThread/CreateThread.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Bypass/CreateThread/CreateThread.go -------------------------------------------------------------------------------- /Bypass/CreateThreadNative/CreateThreadNative.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Bypass/CreateThreadNative/CreateThreadNative.go -------------------------------------------------------------------------------- /Bypass/CreateThreatPoolWait/CreateThreatPoolWait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Bypass/CreateThreatPoolWait/CreateThreatPoolWait.go -------------------------------------------------------------------------------- /Bypass/EnumChildWindows/EnumChildWindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Bypass/EnumChildWindows/EnumChildWindows.go -------------------------------------------------------------------------------- /Bypass/EnumPageFilesW/EnumPageFilesW.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Bypass/EnumPageFilesW/EnumPageFilesW.go -------------------------------------------------------------------------------- /Bypass/EnumerateLoadedModules/EnumerateLoadedModules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Bypass/EnumerateLoadedModules/EnumerateLoadedModules.go -------------------------------------------------------------------------------- /Bypass/EtwpCreateEtwThread/EtwpCreateEtwThread.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Bypass/EtwpCreateEtwThread/EtwpCreateEtwThread.go -------------------------------------------------------------------------------- /Bypass/HaloGate/HaloGate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Bypass/HaloGate/HaloGate.go -------------------------------------------------------------------------------- /Bypass/HeapAlloc/HeapAlloc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Bypass/HeapAlloc/HeapAlloc.go -------------------------------------------------------------------------------- /Bypass/Syscall/Syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Bypass/Syscall/Syscall.go -------------------------------------------------------------------------------- /Bypass/UuidFromString/UuidFromString.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Bypass/UuidFromString/UuidFromString.go -------------------------------------------------------------------------------- /Doge-Gabh/Gabh/GetSsnByException.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Doge-Gabh/Gabh/GetSsnByException.go -------------------------------------------------------------------------------- /Doge-Gabh/Gabh/asm_x64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Doge-Gabh/Gabh/asm_x64.s -------------------------------------------------------------------------------- /Doge-Gabh/Gabh/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Doge-Gabh/Gabh/config.go -------------------------------------------------------------------------------- /Doge-Gabh/Gabh/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Doge-Gabh/Gabh/const.go -------------------------------------------------------------------------------- /Doge-Gabh/Gabh/gabh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Doge-Gabh/Gabh/gabh.go -------------------------------------------------------------------------------- /Doge-Gabh/Gabh/gate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Doge-Gabh/Gabh/gate.go -------------------------------------------------------------------------------- /Doge-Gabh/Gabh/knownDlls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Doge-Gabh/Gabh/knownDlls.go -------------------------------------------------------------------------------- /Doge-Gabh/Gabh/perunsFart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Doge-Gabh/Gabh/perunsFart.go -------------------------------------------------------------------------------- /Doge-Gabh/Gabh/remap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Doge-Gabh/Gabh/remap.go -------------------------------------------------------------------------------- /Doge-Gabh/Gabh/unhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Doge-Gabh/Gabh/unhook.go -------------------------------------------------------------------------------- /Doge-Gabh/Gabh/universal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Doge-Gabh/Gabh/universal.go -------------------------------------------------------------------------------- /Doge-Gabh/Gabh/whisper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Doge-Gabh/Gabh/whisper.go -------------------------------------------------------------------------------- /Doge-Gabh/eggreplace/eggreplace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Doge-Gabh/eggreplace/eggreplace.go -------------------------------------------------------------------------------- /Go2bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Go2bypass.go -------------------------------------------------------------------------------- /Public/Bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Public/Bypass.go -------------------------------------------------------------------------------- /Public/EndecryptApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Public/EndecryptApi.go -------------------------------------------------------------------------------- /Public/FuncApi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Public/FuncApi.go -------------------------------------------------------------------------------- /Public/HideConsole.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Public/HideConsole.go -------------------------------------------------------------------------------- /Public/Pubilc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Public/Pubilc.go -------------------------------------------------------------------------------- /Public/Random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/Public/Random.go -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/README.md -------------------------------------------------------------------------------- /ReBypass/CreateFiber/CreateFiber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/ReBypass/CreateFiber/CreateFiber.go -------------------------------------------------------------------------------- /ReBypass/CreateThread/CreateThread.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/ReBypass/CreateThread/CreateThread.go -------------------------------------------------------------------------------- /ReBypass/CreateThreatPoolWait/CreateThreatPoolWait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/ReBypass/CreateThreatPoolWait/CreateThreatPoolWait.go -------------------------------------------------------------------------------- /ReBypass/EnumChildWindows/CodeToStringShell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/ReBypass/EnumChildWindows/CodeToStringShell.txt -------------------------------------------------------------------------------- /ReBypass/EnumChildWindows/EnumChildWindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/ReBypass/EnumChildWindows/EnumChildWindows.go -------------------------------------------------------------------------------- /ReBypass/EnumPageFilesW/EnumPageFilesW.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/ReBypass/EnumPageFilesW/EnumPageFilesW.go -------------------------------------------------------------------------------- /ReBypass/EnumerateLoadedModules/EnumerateLoadedModules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/ReBypass/EnumerateLoadedModules/EnumerateLoadedModules.go -------------------------------------------------------------------------------- /ReBypass/Syscall-getssn/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/ReBypass/Syscall-getssn/go.mod -------------------------------------------------------------------------------- /ReBypass/Syscall-getssn/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/ReBypass/Syscall-getssn/go.sum -------------------------------------------------------------------------------- /ReBypass/Syscall-getssn/mian.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/ReBypass/Syscall-getssn/mian.go -------------------------------------------------------------------------------- /ReBypass/Syscall/mian.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/ReBypass/Syscall/mian.go -------------------------------------------------------------------------------- /ReBypass/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/ReBypass/main.go -------------------------------------------------------------------------------- /calc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/calc.bin -------------------------------------------------------------------------------- /cmd/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/cmd/build.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/cmd/root.go -------------------------------------------------------------------------------- /endecrypt/AesCEC.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/endecrypt/AesCEC.go -------------------------------------------------------------------------------- /endecrypt/QianKunBaGua.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/endecrypt/QianKunBaGua.go -------------------------------------------------------------------------------- /endecrypt/Xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/endecrypt/Xor.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/go.sum -------------------------------------------------------------------------------- /ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/ico.ico -------------------------------------------------------------------------------- /lib/ico.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/lib/ico.manifest -------------------------------------------------------------------------------- /lib/rsrc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/lib/rsrc.exe -------------------------------------------------------------------------------- /template/CreateFiber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/template/CreateFiber -------------------------------------------------------------------------------- /template/CreateThread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/template/CreateThread -------------------------------------------------------------------------------- /template/CreateThreatPoolWait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/template/CreateThreatPoolWait -------------------------------------------------------------------------------- /template/EnumChildWindows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/template/EnumChildWindows -------------------------------------------------------------------------------- /template/EnumPageFilesW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/template/EnumPageFilesW -------------------------------------------------------------------------------- /template/EnumerateLoadedModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/template/EnumerateLoadedModules -------------------------------------------------------------------------------- /template/EtwpCreateEtwThread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/template/EtwpCreateEtwThread -------------------------------------------------------------------------------- /template/HaloGate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/template/HaloGate -------------------------------------------------------------------------------- /template/HeapAlloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/template/HeapAlloc -------------------------------------------------------------------------------- /template/Syscall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/template/Syscall -------------------------------------------------------------------------------- /template/UuidFromString: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p1d3er/Go2bypass/HEAD/template/UuidFromString --------------------------------------------------------------------------------