The iPhone Wiki is no longer updated. Visit this article on The Apple Wiki for current information. |
Difference between revisions of "IRecovery"
GreySyntax (talk | contribs) (→Recovery 2.0 (0x1281)) |
GreySyntax (talk | contribs) (→Features) |
||
Line 56: | Line 56: | ||
====Raw Commands==== |
====Raw Commands==== |
||
You can now send raw commands via the -x21 -x40 or -xA1 flags |
You can now send raw commands via the -x21 -x40 or -xA1 flags |
||
+ | |||
+ | ==Maintained Forks== |
||
+ | [http://github.com/iH8sn0w/irecovery iH8sn0w/irecovery] |
||
+ | |||
+ | [http://github.com/GreySyntax/irecovery GreySyntax/irecovery] |
||
+ | |||
+ | ==Updates== |
||
+ | Chronic-Dev are working on converting iRecovery to a library more info here [http://github.com/chronicdev/libirecovery chronicdev/libirecovery]. |
||
+ | |||
+ | A C++ port is also in the works dubbed iRecovery++ more info here [http://github.com/GreySyntax/iRecoveryplusplus GreySyntax/iRecoveryplusplus] |
||
==Download== |
==Download== |
Revision as of 23:16, 15 May 2010
iRecovery is a libusb-based CLI utility for Mac OS X, Linux, and Windows. It is able to talk to iBoot and iBSS via USB. It's completely open source; the source code is released under the terms of the GNU GPL v3. The full license text can be found in the LICENSE file on github.
It currently connects to:
- 0x1227 (DFU/WTF Mode 2.0)
- Recovery Mode 0x1281 (Recovery Mode/iBSS)
Credits
westbaer
Thanks
pod2g, tom3q, planetbeing, geohot and posixninja.
Features
DFU 2.0 (0x1227)
It can upload a file, such as an iBSS, so that you can unplug and spawn a shell with 0x1281.
Recovery 2.0 (0x1281)
File Uploading
You can upload a file to 0x9000000 with the following syntax:
./iRecovery -f file
In newer builds that use libusb-1.0 this is now
./iRecovery -u file
Two-Way Shell
You can spawn a shell to do all sorts of neat things with the syntax:
./iRecovery -s
Once it has spawned, you can type 'help' and iBoot will respond with its built-in command list.
Single Command
./iRecovery -c "command"
Sends a single command to the device *without* spawning a shell.
usb_control_msg(0x21, 2) Exploit Command
./iRecovery -k
Sends Chronic Dev's + Geohot's latest usb exploit. Implemented into blackra1n. This was just updated a few days ago. (10/17/09) posixninja's fork In newer builds this is now -e
Auto Boot=
You can now enable auto-boot by running:
./iRecovery -a
or by sending /auto-boot in a shell.
USB Reset=
Reset USB
./iRecovery -r
Batch Scripting
iRecovery now supports batch scripting, this allows you to send commands to iBoot from a pre written list of commands, this also suports scripting such as /auto-boot and /upload <file>
./iRecovery -b <file>
or in a shell:
/batch <file>
Raw Commands
You can now send raw commands via the -x21 -x40 or -xA1 flags
Maintained Forks
Updates
Chronic-Dev are working on converting iRecovery to a library more info here chronicdev/libirecovery.
A C++ port is also in the works dubbed iRecovery++ more info here GreySyntax/iRecoveryplusplus