diff --git a/README.md b/README.md index 8b251ab8..ac1e9559 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,10 @@ Usage: `futurerestore [OPTIONS] iPSW` | ` -e ` | ` --exit-recovery ` | Exit recovery mode and quit | | | ` --use-pwndfu ` | Restoring devices with Odysseus method. Device needs to be in pwned DFU mode already | | | ` --no-ibss ` | Restoring devices with Odysseus method. For checkm8/iPwnder32 specifically, bootrom needs to be patched already with unless iPwnder. | -| | ` --just-boot "-v" ` | Tethered booting the device from pwned DFU mode. You can optionally set ` boot-args ` | +| | ` --rdsk PATH ` | Set custom restore ramdisk for entering restoremode(requires use-pwndfu) | +| | ` --rkrn PATH ` | Set custom restore kernelcache for entering restoremode(requires use-pwndfu) | +| | ` --set-nonce ` | Set custom nonce from your blob then exit recovery(requires use-pwndfu) | +| | ` --set-nonce=0xNONCE ` | Set custom nonce then exit recovery(requires use-pwndfu) | | | ` --latest-sep ` | Use latest signed SEP instead of manually specifying one (may cause bad restore) | | ` -s ` | ` --sep PATH ` | Manually specify SEP to be flashed | | ` -m ` | ` --sep-manifest PATH ` | BuildManifest for requesting SEP ticket | diff --git a/futurerestore/main.cpp b/futurerestore/main.cpp index 04164259..66b9b9b2 100644 --- a/futurerestore/main.cpp +++ b/futurerestore/main.cpp @@ -86,7 +86,8 @@ void cmd_help(){ printf(" --no-ibss\t\t\tRestoring devices with Odysseus method. For checkm8/iPwnder32 specifically, bootrom needs to be patched already with unless iPwnder.\n"); printf(" --rdsk PATH\t\tSet custom restore ramdisk for entering restoremode(requires use-pwndfu)\n"); printf(" --rkrn PATH\t\tSet custom restore kernelcache for entering restoremode(requires use-pwndfu)\n"); - printf(" --set-nonce NONCE\t\tSet custom nonce then exit recovery(requires use-pwndfu)\n"); + printf(" --set-nonce\t\tSet custom nonce from your blob then exit recovery(requires use-pwndfu)\n"); + printf(" --set-nonce=0xNONCE\tSet custom nonce then exit recovery(requires use-pwndfu)\n"); #endif printf("\nOptions for SEP:\n");