├── .editorconfig ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode └── c_cpp_properties.json ├── LICENSE ├── Makefile ├── README.md ├── kpatch ├── README.md ├── kpatch_0100.img └── kpatch_0101.img ├── linkfile ├── loader ├── Makefile ├── linkfile └── loader.c ├── src └── main.c └── utils ├── fakepack.py └── osdpack ├── LICENSE ├── README.md ├── decompress.go ├── fakecompress.go ├── go.mod └── main.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/README.md -------------------------------------------------------------------------------- /kpatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/kpatch/README.md -------------------------------------------------------------------------------- /kpatch/kpatch_0100.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/kpatch/kpatch_0100.img -------------------------------------------------------------------------------- /kpatch/kpatch_0101.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/kpatch/kpatch_0101.img -------------------------------------------------------------------------------- /linkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/linkfile -------------------------------------------------------------------------------- /loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/loader/Makefile -------------------------------------------------------------------------------- /loader/linkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/loader/linkfile -------------------------------------------------------------------------------- /loader/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/loader/loader.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/src/main.c -------------------------------------------------------------------------------- /utils/fakepack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/utils/fakepack.py -------------------------------------------------------------------------------- /utils/osdpack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/utils/osdpack/LICENSE -------------------------------------------------------------------------------- /utils/osdpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/utils/osdpack/README.md -------------------------------------------------------------------------------- /utils/osdpack/decompress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/utils/osdpack/decompress.go -------------------------------------------------------------------------------- /utils/osdpack/fakecompress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/utils/osdpack/fakecompress.go -------------------------------------------------------------------------------- /utils/osdpack/go.mod: -------------------------------------------------------------------------------- 1 | module osdpack 2 | 3 | go 1.24.4 4 | -------------------------------------------------------------------------------- /utils/osdpack/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcm720/protopwn/HEAD/utils/osdpack/main.go --------------------------------------------------------------------------------