├── GoDefenderLogo.png ├── Install.bat ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── internal ├── antidebug │ └── antidebug.go ├── antidll │ └── antidll.go ├── antivm │ └── antivm.go ├── hooks │ └── hook_detector.go └── utils │ ├── debug.go │ └── winapi.go └── main.go /GoDefenderLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/GoDefender/HEAD/GoDefenderLogo.png -------------------------------------------------------------------------------- /Install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/GoDefender/HEAD/Install.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/GoDefender/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/GoDefender/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/GoDefender/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/GoDefender/HEAD/go.sum -------------------------------------------------------------------------------- /internal/antidebug/antidebug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/GoDefender/HEAD/internal/antidebug/antidebug.go -------------------------------------------------------------------------------- /internal/antidll/antidll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/GoDefender/HEAD/internal/antidll/antidll.go -------------------------------------------------------------------------------- /internal/antivm/antivm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/GoDefender/HEAD/internal/antivm/antivm.go -------------------------------------------------------------------------------- /internal/hooks/hook_detector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/GoDefender/HEAD/internal/hooks/hook_detector.go -------------------------------------------------------------------------------- /internal/utils/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/GoDefender/HEAD/internal/utils/debug.go -------------------------------------------------------------------------------- /internal/utils/winapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/GoDefender/HEAD/internal/utils/winapi.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/GoDefender/HEAD/main.go --------------------------------------------------------------------------------