├── .gitattributes ├── .gitignore ├── Info.plist ├── README.md ├── headers ├── launch.h ├── xpc │ ├── XPC.apinotes │ ├── activity.h │ ├── availability.h │ ├── base.h │ ├── connection.h │ ├── debug.h │ ├── endpoint.h │ ├── module.modulemap │ ├── rich_error.h │ ├── session.h │ └── xpc.h └── xpc_private.h ├── jbsigs.h ├── jbsigs ├── jbsigs-1.h ├── jbsigs-10.h ├── jbsigs-11.h ├── jbsigs-12.h ├── jbsigs-13.h ├── jbsigs-14.h ├── jbsigs-15.h ├── jbsigs-16.h ├── jbsigs-2.h ├── jbsigs-3.h ├── jbsigs-4.h ├── jbsigs-5.h ├── jbsigs-6.h ├── jbsigs-7.h ├── jbsigs-8.h └── jbsigs-9.h ├── jbsigs_generator.m └── main.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/.gitignore -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/README.md -------------------------------------------------------------------------------- /headers/launch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/headers/launch.h -------------------------------------------------------------------------------- /headers/xpc/XPC.apinotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/headers/xpc/XPC.apinotes -------------------------------------------------------------------------------- /headers/xpc/activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/headers/xpc/activity.h -------------------------------------------------------------------------------- /headers/xpc/availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/headers/xpc/availability.h -------------------------------------------------------------------------------- /headers/xpc/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/headers/xpc/base.h -------------------------------------------------------------------------------- /headers/xpc/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/headers/xpc/connection.h -------------------------------------------------------------------------------- /headers/xpc/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/headers/xpc/debug.h -------------------------------------------------------------------------------- /headers/xpc/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/headers/xpc/endpoint.h -------------------------------------------------------------------------------- /headers/xpc/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/headers/xpc/module.modulemap -------------------------------------------------------------------------------- /headers/xpc/rich_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/headers/xpc/rich_error.h -------------------------------------------------------------------------------- /headers/xpc/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/headers/xpc/session.h -------------------------------------------------------------------------------- /headers/xpc/xpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/headers/xpc/xpc.h -------------------------------------------------------------------------------- /headers/xpc_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/headers/xpc_private.h -------------------------------------------------------------------------------- /jbsigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-1.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-10.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-11.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-12.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-13.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-14.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-15.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-16.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-2.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-3.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-4.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-5.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-6.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-7.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-8.h -------------------------------------------------------------------------------- /jbsigs/jbsigs-9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs/jbsigs-9.h -------------------------------------------------------------------------------- /jbsigs_generator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/jbsigs_generator.m -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roothider/JailbreakDetector/HEAD/main.m --------------------------------------------------------------------------------