├── .github ├── actions │ └── install-frida-devkit │ │ └── action.yml ├── dependabot.yml └── workflows │ └── release.yml ├── .gitignore ├── .goreleaser.yaml ├── CODEOWNERS ├── LICENSE ├── README.md ├── airplane_mode.png ├── go.mod ├── go.sum ├── logger.go ├── main.go ├── object.go ├── offsets.go ├── package.json ├── running.png ├── running_one.png └── script.ts /.github/actions/install-frida-devkit/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/.github/actions/install-frida-devkit/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Global 2 | * @NSEcho 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/README.md -------------------------------------------------------------------------------- /airplane_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/airplane_mode.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/go.sum -------------------------------------------------------------------------------- /logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/logger.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/main.go -------------------------------------------------------------------------------- /object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/object.go -------------------------------------------------------------------------------- /offsets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/offsets.go -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/package.json -------------------------------------------------------------------------------- /running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/running.png -------------------------------------------------------------------------------- /running_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/running_one.png -------------------------------------------------------------------------------- /script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReverseApple/gxpc/HEAD/script.ts --------------------------------------------------------------------------------