├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── Makefile.am ├── autogen.sh ├── configure.ac ├── include ├── Makefile.am └── ra1nsn0w │ ├── iOSDevice.hpp │ ├── ra1nsn0w.hpp │ ├── ra1nsn0w_defs.hpp │ ├── ra1nsn0w_launch.hpp │ ├── ra1nsn0w_patch.hpp │ └── ra1nsn0w_plugins.hpp ├── libra1nsn0w.pc.in ├── ra1nsn0w.xcodeproj └── project.pbxproj ├── ra1nsn0w ├── Makefile.am ├── iOSDevice.cpp ├── main.cpp ├── ra1nsn0w_argparser.cpp ├── ra1nsn0w_launch.cpp ├── ra1nsn0w_patch.cpp └── ra1nsn0w_plugins.cpp └── tools ├── Makefile.am ├── iBootPatcher ├── Makefile.am └── main.cpp └── kernelPatcher ├── Makefile.am └── main.cpp /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/Makefile.am -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/configure.ac -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/ra1nsn0w/iOSDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/include/ra1nsn0w/iOSDevice.hpp -------------------------------------------------------------------------------- /include/ra1nsn0w/ra1nsn0w.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/include/ra1nsn0w/ra1nsn0w.hpp -------------------------------------------------------------------------------- /include/ra1nsn0w/ra1nsn0w_defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/include/ra1nsn0w/ra1nsn0w_defs.hpp -------------------------------------------------------------------------------- /include/ra1nsn0w/ra1nsn0w_launch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/include/ra1nsn0w/ra1nsn0w_launch.hpp -------------------------------------------------------------------------------- /include/ra1nsn0w/ra1nsn0w_patch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/include/ra1nsn0w/ra1nsn0w_patch.hpp -------------------------------------------------------------------------------- /include/ra1nsn0w/ra1nsn0w_plugins.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/include/ra1nsn0w/ra1nsn0w_plugins.hpp -------------------------------------------------------------------------------- /libra1nsn0w.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/libra1nsn0w.pc.in -------------------------------------------------------------------------------- /ra1nsn0w.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/ra1nsn0w.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ra1nsn0w/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/ra1nsn0w/Makefile.am -------------------------------------------------------------------------------- /ra1nsn0w/iOSDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/ra1nsn0w/iOSDevice.cpp -------------------------------------------------------------------------------- /ra1nsn0w/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/ra1nsn0w/main.cpp -------------------------------------------------------------------------------- /ra1nsn0w/ra1nsn0w_argparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/ra1nsn0w/ra1nsn0w_argparser.cpp -------------------------------------------------------------------------------- /ra1nsn0w/ra1nsn0w_launch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/ra1nsn0w/ra1nsn0w_launch.cpp -------------------------------------------------------------------------------- /ra1nsn0w/ra1nsn0w_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/ra1nsn0w/ra1nsn0w_patch.cpp -------------------------------------------------------------------------------- /ra1nsn0w/ra1nsn0w_plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/ra1nsn0w/ra1nsn0w_plugins.cpp -------------------------------------------------------------------------------- /tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/tools/Makefile.am -------------------------------------------------------------------------------- /tools/iBootPatcher/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/tools/iBootPatcher/Makefile.am -------------------------------------------------------------------------------- /tools/iBootPatcher/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/tools/iBootPatcher/main.cpp -------------------------------------------------------------------------------- /tools/kernelPatcher/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/tools/kernelPatcher/Makefile.am -------------------------------------------------------------------------------- /tools/kernelPatcher/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tihmstar/ra1nsn0w/HEAD/tools/kernelPatcher/main.cpp --------------------------------------------------------------------------------