├── .github └── workflows │ └── release.yml ├── .gitignore ├── README.md ├── examples └── selfInject │ ├── README.md │ ├── go.mod │ ├── go.sum │ ├── selfInject.go │ └── selfinject.png ├── go.mod ├── go.sum ├── go_windows.env ├── internal ├── manalocator │ └── locator.go ├── superdsyscall │ ├── superdsyscall.go │ └── superdsyscall.s └── utils │ ├── hash │ └── hash.go │ ├── helper │ ├── getpeb.s │ └── misc.go │ └── superdwindows │ └── types.go ├── superd.png ├── superdeye.go ├── superdwrapper.go └── tartarusgatehellhall.png /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/README.md -------------------------------------------------------------------------------- /examples/selfInject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/examples/selfInject/README.md -------------------------------------------------------------------------------- /examples/selfInject/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/examples/selfInject/go.mod -------------------------------------------------------------------------------- /examples/selfInject/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/examples/selfInject/go.sum -------------------------------------------------------------------------------- /examples/selfInject/selfInject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/examples/selfInject/selfInject.go -------------------------------------------------------------------------------- /examples/selfInject/selfinject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/examples/selfInject/selfinject.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/go.sum -------------------------------------------------------------------------------- /go_windows.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/go_windows.env -------------------------------------------------------------------------------- /internal/manalocator/locator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/internal/manalocator/locator.go -------------------------------------------------------------------------------- /internal/superdsyscall/superdsyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/internal/superdsyscall/superdsyscall.go -------------------------------------------------------------------------------- /internal/superdsyscall/superdsyscall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/internal/superdsyscall/superdsyscall.s -------------------------------------------------------------------------------- /internal/utils/hash/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/internal/utils/hash/hash.go -------------------------------------------------------------------------------- /internal/utils/helper/getpeb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/internal/utils/helper/getpeb.s -------------------------------------------------------------------------------- /internal/utils/helper/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/internal/utils/helper/misc.go -------------------------------------------------------------------------------- /internal/utils/superdwindows/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/internal/utils/superdwindows/types.go -------------------------------------------------------------------------------- /superd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/superd.png -------------------------------------------------------------------------------- /superdeye.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/superdeye.go -------------------------------------------------------------------------------- /superdwrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/superdwrapper.go -------------------------------------------------------------------------------- /tartarusgatehellhall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/almounah/superdeye/HEAD/tartarusgatehellhall.png --------------------------------------------------------------------------------