├── .gitignore ├── .gitmodules ├── DataFile.cpp ├── DataFile.h ├── PatentClaimVisualizer.py ├── README.md ├── dump_stuff.py ├── dyld_decache.cpp ├── fix_pcrel.idc ├── fixobjc2.idc ├── gcc46.rb ├── ipsw_decrypt.py ├── log_rename.idc ├── lzss.py └── machoizer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytm/Miscellaneous/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytm/Miscellaneous/HEAD/.gitmodules -------------------------------------------------------------------------------- /DataFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytm/Miscellaneous/HEAD/DataFile.cpp -------------------------------------------------------------------------------- /DataFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytm/Miscellaneous/HEAD/DataFile.h -------------------------------------------------------------------------------- /PatentClaimVisualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytm/Miscellaneous/HEAD/PatentClaimVisualizer.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytm/Miscellaneous/HEAD/README.md -------------------------------------------------------------------------------- /dump_stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytm/Miscellaneous/HEAD/dump_stuff.py -------------------------------------------------------------------------------- /dyld_decache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytm/Miscellaneous/HEAD/dyld_decache.cpp -------------------------------------------------------------------------------- /fix_pcrel.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytm/Miscellaneous/HEAD/fix_pcrel.idc -------------------------------------------------------------------------------- /fixobjc2.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytm/Miscellaneous/HEAD/fixobjc2.idc -------------------------------------------------------------------------------- /gcc46.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytm/Miscellaneous/HEAD/gcc46.rb -------------------------------------------------------------------------------- /ipsw_decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytm/Miscellaneous/HEAD/ipsw_decrypt.py -------------------------------------------------------------------------------- /log_rename.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytm/Miscellaneous/HEAD/log_rename.idc -------------------------------------------------------------------------------- /lzss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytm/Miscellaneous/HEAD/lzss.py -------------------------------------------------------------------------------- /machoizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytm/Miscellaneous/HEAD/machoizer.py --------------------------------------------------------------------------------