├── Makefile ├── README ├── ac.c ├── ac.h ├── cache ├── config.h ├── confsplit.c ├── patchfinder64.c ├── racoon ├── rel2.c ├── rocky.c ├── ropc ├── rope2.c ├── rope4.c ├── rope5.c ├── stage2.asm ├── stage4.asm ├── stage5.asm ├── stage6.js └── untether.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/README -------------------------------------------------------------------------------- /ac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/ac.c -------------------------------------------------------------------------------- /ac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/ac.h -------------------------------------------------------------------------------- /cache: -------------------------------------------------------------------------------- 1 | device/dyld_shared_cache_arm64 -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/config.h -------------------------------------------------------------------------------- /confsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/confsplit.c -------------------------------------------------------------------------------- /patchfinder64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/patchfinder64.c -------------------------------------------------------------------------------- /racoon: -------------------------------------------------------------------------------- 1 | device/racoon -------------------------------------------------------------------------------- /rel2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/rel2.c -------------------------------------------------------------------------------- /rocky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/rocky.c -------------------------------------------------------------------------------- /ropc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/ropc -------------------------------------------------------------------------------- /rope2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/rope2.c -------------------------------------------------------------------------------- /rope4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/rope4.c -------------------------------------------------------------------------------- /rope5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/rope5.c -------------------------------------------------------------------------------- /stage2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/stage2.asm -------------------------------------------------------------------------------- /stage4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/stage4.asm -------------------------------------------------------------------------------- /stage5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/stage5.asm -------------------------------------------------------------------------------- /stage6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/stage6.js -------------------------------------------------------------------------------- /untether.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerub/acorn/HEAD/untether.c --------------------------------------------------------------------------------