├── .gitattributes ├── .gitignore ├── Makefile ├── README ├── misc └── sym_order.txt ├── src ├── bootpage.c ├── cmd.c ├── der.c ├── entry.S ├── image3.c ├── include │ ├── aes.h │ ├── bootpage.h │ ├── cmd.h │ ├── der.h │ ├── iboot.h │ ├── image3.h │ ├── libc.h │ ├── random.h │ ├── shsh.h │ ├── star.h │ └── utils.h ├── main.c ├── overlap.c ├── shsh.c └── utils.c ├── targets └── iPhone5,1 │ ├── 10B350 │ └── iBEC │ │ ├── include │ │ └── target │ │ │ └── offsets.h │ │ └── target.mk │ └── 12H321 │ └── iBEC │ ├── include │ └── target │ │ └── offsets.h │ └── target.mk └── tools └── binary-post-process.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/README -------------------------------------------------------------------------------- /misc/sym_order.txt: -------------------------------------------------------------------------------- 1 | start 2 | -------------------------------------------------------------------------------- /src/bootpage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/bootpage.c -------------------------------------------------------------------------------- /src/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/cmd.c -------------------------------------------------------------------------------- /src/der.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/der.c -------------------------------------------------------------------------------- /src/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/entry.S -------------------------------------------------------------------------------- /src/image3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/image3.c -------------------------------------------------------------------------------- /src/include/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/include/aes.h -------------------------------------------------------------------------------- /src/include/bootpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/include/bootpage.h -------------------------------------------------------------------------------- /src/include/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/include/cmd.h -------------------------------------------------------------------------------- /src/include/der.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/include/der.h -------------------------------------------------------------------------------- /src/include/iboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/include/iboot.h -------------------------------------------------------------------------------- /src/include/image3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/include/image3.h -------------------------------------------------------------------------------- /src/include/libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/include/libc.h -------------------------------------------------------------------------------- /src/include/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/include/random.h -------------------------------------------------------------------------------- /src/include/shsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/include/shsh.h -------------------------------------------------------------------------------- /src/include/star.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/include/star.h -------------------------------------------------------------------------------- /src/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/include/utils.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/main.c -------------------------------------------------------------------------------- /src/overlap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/overlap.c -------------------------------------------------------------------------------- /src/shsh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/shsh.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/src/utils.c -------------------------------------------------------------------------------- /targets/iPhone5,1/10B350/iBEC/include/target/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/targets/iPhone5,1/10B350/iBEC/include/target/offsets.h -------------------------------------------------------------------------------- /targets/iPhone5,1/10B350/iBEC/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/targets/iPhone5,1/10B350/iBEC/target.mk -------------------------------------------------------------------------------- /targets/iPhone5,1/12H321/iBEC/include/target/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/targets/iPhone5,1/12H321/iBEC/include/target/offsets.h -------------------------------------------------------------------------------- /targets/iPhone5,1/12H321/iBEC/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/targets/iPhone5,1/12H321/iBEC/target.mk -------------------------------------------------------------------------------- /tools/binary-post-process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyanSatan/StarInjector/HEAD/tools/binary-post-process.py --------------------------------------------------------------------------------