├── .gitignore ├── README.md ├── core ├── cmd.go ├── encrypt.go └── error.go ├── go.mod ├── imgs ├── add-info.png ├── build-sparrow.png └── shellcode-encode.png ├── loader └── loader.go └── other ├── decrypt.go └── uuid_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peithon/scLoader/HEAD/README.md -------------------------------------------------------------------------------- /core/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peithon/scLoader/HEAD/core/cmd.go -------------------------------------------------------------------------------- /core/encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peithon/scLoader/HEAD/core/encrypt.go -------------------------------------------------------------------------------- /core/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peithon/scLoader/HEAD/core/error.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module scLoader 2 | 3 | go 1.17 4 | //下面这些是用来测试的时候加载的 5 | require ( 6 | github.com/google/uuid v1.3.0 7 | golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e 8 | ) 9 | -------------------------------------------------------------------------------- /imgs/add-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peithon/scLoader/HEAD/imgs/add-info.png -------------------------------------------------------------------------------- /imgs/build-sparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peithon/scLoader/HEAD/imgs/build-sparrow.png -------------------------------------------------------------------------------- /imgs/shellcode-encode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peithon/scLoader/HEAD/imgs/shellcode-encode.png -------------------------------------------------------------------------------- /loader/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peithon/scLoader/HEAD/loader/loader.go -------------------------------------------------------------------------------- /other/decrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peithon/scLoader/HEAD/other/decrypt.go -------------------------------------------------------------------------------- /other/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Peithon/scLoader/HEAD/other/uuid_test.go --------------------------------------------------------------------------------