Beispiel #1
0
def main():

    removeFiles()

    utils.clean()  # removes potentially out of date JSON files

    text = 'PyBoot - A tool for tether booting Checkm8 vulnerable iOS devices by Matty, @mosk_i.'
    parser = argparse.ArgumentParser(
        description=text,
        formatter_class=RawTextHelpFormatter,
        usage=
        f"./pyboot.py -i 'DEVICE IOS'\n\nE.G './pyboot.py -i iPhone9,2 13.2.3 -b ~/Downloads/bootlogo.png'\n\nCurrent PyBoot version is: {tool_version}",
        epilog=
        "EXAMPLE USAGE: ./pyboot.py -i iPhone8,1 13.4.1 -d disk0s1s6\n\nOR ./pyboot -i iPhone9,4 13.1.3 -b ~/Downloads/bootlogo.png\n\nOR ./pyboot -q ~/Downloads/13.2.3.iPhone7.ipsw iPhone9,1 -a"
    )
    parser.add_argument("-i",
                        "--ios",
                        help="iOS version you wish to boot (DEVICE IOS)",
                        nargs=2,
                        metavar=('\b', '\b'))
    parser.add_argument("-q",
                        "--ipsw",
                        help="Path to downloaded IPSW (PATH DEVICE)",
                        nargs=2,
                        metavar=('\b', '\b'))
    parser.add_argument(
        "-b",
        "--bootlogo",
        help="Path to .PNG you wish to use as a custom Boot Logo (LOGO)",
        nargs=1,
        metavar=("\b"))
    parser.add_argument(
        '-p',
        '--pwn',
        help='Enter PWNDFU mode, which will also apply signature patches',
        action='store_true')
    parser.add_argument("--amfi",
                        help="Apply AMFI patches to kernel (Beta)",
                        action="store_true")
    parser.add_argument("--debug",
                        help="Send verbose boot log to serial for debugging",
                        action="store_true")
    parser.add_argument(
        "-d",
        "--dualboot",
        help=
        "Name of system partition you wish to boot (e.g disk0s1s3 or disk0s1s6)",
        nargs=1,
        metavar=("\b"))
    parser.add_argument(
        "-a",
        "--bootargs",
        help=
        "Custom boot-args, will prompt user to enter, don't enter a value upon running PyBoot (Default is '-v')",
        action='store_true')
    parser.add_argument("-v",
                        "--version",
                        help="List the version of the tool",
                        action="store_true")
    parser.add_argument("-c",
                        "--credits",
                        help="List credits",
                        action="store_true")

    if platform.system() == 'Darwin':  # If not MacOS then exit basically
        pass
    elif platform.system() == "Linux":
        sys.exit(
            '\033[91m' +
            "\nSorry this OS is not currently supported!\n\nOnly MacOS machines (Hackintosh or a legitimate Apple computer) are support as of now.\n"
            + '\033[0m')
    elif platform.system() == "Windows":
        sys.exit(
            '\033[91m' +
            "\nSorry Windows will never be supported!\n\nOnly MacOS machines (Hackintosh or a legitimate Apple computer) are support as of now.\n"
            + '\033[0m')
    else:
        sys.exit("Wtf are you even running this on?")

    args = parser.parse_args()

    if args.credits:
        print('\033[95m' + "\nPyBoot Created by: Matty - @mosk_i\n" +
              '\033[0m')
        print('\033[94m' + "Other Tools by -\n" + '\033[0m')
        print('\033[92m' + "Thimstar - [img4tool]")
        print("realnp - [ibootim]")
        print("axi0mX - [ipwndfu/checkm8]")
        print("dayt0n - [kairos]")
        print("xerub - [img4]")
        print("Marco Grassi - [PartialZip]")
        print("Merculous - [ios-python-tools]")
        print("0x7ff - [Eclipsa]")
        print("Ralph0045 - [dtree_patcher/Kernel64Patcher]")
        print("mcg29_ - [amfi patching stuff]")
        print("libimobiledevice team - [irecovery]\n" + '\033[0m')
        sys.exit()
    elif args.pwn:
        pwn.pwndfumode()
        exit(22)

    elif args.ipsw:
        if args.amfi:
            amfiPatches = True
            input(
                "Warning: To applying AMFI patches, you need to compile and install https://github.com/Ralph0045/liboffsetfinder64 otherwise it will not work.\nPress enter when you have done this or if you already have it installed."
            )
        else:
            amfiPatches = False
        if args.bootlogo:
            useCustomLogo = True
            logopath = args.bootlogo[0]
        else:
            useCustomLogo = False
            logopath = "null"
        if args.dualboot:
            bootOtherOS = True
            sysPartName = args.dualboot[0]
            if args.debug:
                print(
                    "Debugging mode enabled! You can use a serial cable to see more output for debugging issues"
                )
                bootArgs = f"rd={sysPartName} -v serial=3"
            else:
                bootArgs = f"rd={sysPartName} -v"
            if args.bootargs:
                print(
                    f"\n" + '\033[93m' + "WARNING:" + '\033[0m' +
                    f"'-a' was specified indicating the user wanted to set custom boot-args, but '-d' was also set which currently doesn't support custom boot-args...\nIgnoring '-a' and continuing with '{bootArgs}' as the set boot-args.\n"
                )
        else:
            bootOtherOS = False
            if args.bootargs:
                bootArgs = input(
                    "Please enter the boot-args you want to use then press enter: "
                )
            else:
                bootArgs = "-v"

        print(
            '\033[95m' +
            "PyBoot - A tool for tether booting Checkm8 vulnerable iOS devices by Matty, @mosk_i\n"
            + '\033[0m')
        print("Current version is: " + tool_version)
        print(
            "User chose to use a locally stored IPSW, running some checks...")
        if os.path.exists("IPSW"):
            shutil.rmtree("IPSW")
        ipsw.unzipIPSW(args.ipsw[0])
        version = False
        supportedModels = str(
            ipsw.readmanifest("IPSW/BuildManifest.plist", version))
        if args.ipsw[1] in supportedModels:
            print("IPSW is for given device!")
        else:
            print(
                "Sorry this IPSW is not valid for the given device, either run PyBoot with -i to download the correct files or download the correct ipsw from ipsw.me"
            )
            exit(0)
        version = True
        iosVersion = str(ipsw.readmanifest("IPSW/BuildManifest.plist",
                                           version))
        print(
            f"iOS version is: {iosVersion} and device model is: {args.ipsw[1]}"
        )
        time.sleep(5)

        arewelocal = True
        img4.img4stuff(args.ipsw[1], iosVersion, useCustomLogo, logopath,
                       arewelocal, bootOtherOS, bootArgs, amfiPatches)

        # now to pwn device
        print("Exploiting device with checkm8")
        pwn.pwndfumode()

        # Send files to device and boot =)
        img4.sendImages(iosVersion, useCustomLogo)

        print("Device should be booting!")
        exit(0)
    elif args.ios:
        print(
            '\033[95m' +
            "PyBoot - A tool for tether booting Checkm8 vulnerable iOS devices by Matty, @mosk_i\n"
            + '\033[0m')
        print("Current version is: " + tool_version)
        if args.amfi:
            amfiPatches = True
            input(
                "Warning: To applying AMFI patches, you need to compile and install https://github.com/Ralph0045/liboffsetfinder64 otherwise it will not work.\nPress enter when you have done this or if you already have it installed."
            )

        else:
            amfiPatches = False
        if args.bootlogo:
            useCustomLogo = True
            logopath = args.bootlogo[0]
        else:
            useCustomLogo = False
            logopath = "null"
        if args.dualboot:
            bootOtherOS = True
            sysPartName = args.dualboot[0]
            if args.debug:
                print(
                    "Debugging mode enabled! You can use a serial cable to see more output for debugging issues"
                )
                bootArgs = f"rd={sysPartName} -v serial=3"
            else:
                bootArgs = f"rd={sysPartName} -v"
            print(
                f"User choose to boot {args.ios[1]} from /dev/{sysPartName}.")
            if args.bootargs:
                print(
                    f"\n" + '\033[93m' + "WARNING:" + '\033[0m' +
                    f"'-a' was specified indicating the user wanted to set custom boot-args, but '-d' was also set which currently doesn't support custom boot-args...\nIgnoring '-a' and continuing with '{bootArgs}' as the set boot-args.\n"
                )
        else:
            bootOtherOS = False
            if args.bootargs:
                bootArgs = input(
                    "Please enter the boot-args you want to use then press enter: "
                )
            else:
                bootArgs = "-v"

        if "10." in (str(args.ios))[2:-2]:
            print(
                "\nWARNING - 10.x Currently WILL NOT BOOT. You can try if you want to but expect it not to boot!\nPress enter to continue or type anything else and press enter to exit"
            )
            choice = input("")
            if choice == "":
                pass
            else:
                print("Exiting...")
                exit(2)

        print("Make sure your device is connected in DFU mode")
        time.sleep(5)
        arewelocal = False
        img4.img4stuff(args.ios[0], args.ios[1], useCustomLogo, logopath,
                       arewelocal, bootOtherOS, bootArgs, amfiPatches)

        # now to pwn device
        print("Exploiting device with checkm8")
        pwn.pwndfumode()

        # Send files to device and boot =)
        img4.sendImages(args.ios[1], useCustomLogo)

        print("Device should be booting!")
        removeFiles()
        exit(2)

    elif args.version:
        sys.exit(f"Current version is: {tool_version}")

    else:
        sys.exit(parser.print_help(sys.stderr))
Beispiel #2
0
            if choice == "":
                pass
            else:
                print("Exiting...")
                exit(2)

        print("Make sure your device is connected in DFU mode")
        time.sleep(5)
        img4.img4stuff(argv[2], argv[3], useCustomLogo, logopath)

        #now to pwn device
        print("Exploiting device with checkm8")
        pwn.pwndfumode()

        #Send files to device and boot =)
        img4.sendImages(argv[3], useCustomLogo)

        for item in removeFiles:
            if os.path.isfile(item):
                os.remove(item)
        print("Device should be booting!")
        exit(2)

    elif args.version:
        sys.exit(f"Current version is: {tool_version}")

    else:
        sys.exit(f'{argv[1]} is not a valid argument!')

    sys.exit(0)
Beispiel #3
0
def main():

    removeFiles()

    utils.clean()  # removes potentially out of date JSON files

    text = 'PyBoot - A tool for tether booting Checkm8 vulnerable iOS devices by Matty, @mosk_i.'
    parser = argparse.ArgumentParser(
        description=text,
        formatter_class=RawTextHelpFormatter,
        usage=
        f"./pyboot.py -i 'DEVICE IOS'\n\nE.G './pyboot.py -i iPhone9,2 13.2.3 -b ~/Downloads/bootlogo.png'\n\nCurrent PyBoot version is: {tool_version}",
        epilog=
        "EXAMPLE USAGE: ./pyboot.py -i iPhone8,1 13.4.1 -d disk0s1s6\n\nOR ./pyboot -i iPhone9,4 13.1.3 -b ~/Downloads/bootlogo.png\n\nOR ./pyboot -q ~/Downloads/13.2.3.iPhone7.ipsw iPhone9,1 -a"
    )
    parser.add_argument("-i",
                        "--ios",
                        help="iOS version you wish to boot (DEVICE IOS)",
                        nargs=2,
                        metavar=('\b', '\b'))
    parser.add_argument("-q",
                        "--ipsw",
                        help="Path to downloaded IPSW (PATH DEVICE)",
                        nargs=2,
                        metavar=('\b', '\b'))
    parser.add_argument(
        "-b",
        "--bootlogo",
        help="Path to .PNG you wish to use as a custom Boot Logo (LOGO)",
        nargs=1,
        metavar=("\b"))
    parser.add_argument(
        '-p',
        '--pwn',
        help='Enter PWNDFU mode, which will also apply signature patches',
        action='store_true')
    parser.add_argument("--amfi",
                        help="Apply AMFI patches to kernel (Beta)",
                        action="store_true")
    parser.add_argument("--debug",
                        help="Send verbose boot log to serial for debugging",
                        action="store_true")
    parser.add_argument(
        "-d",
        "--dualboot",
        help=
        "Name of system partition you wish to boot (e.g disk0s1s3 or disk0s1s6)",
        nargs=1,
        metavar=("\b"))
    parser.add_argument(
        "-a",
        "--bootargs",
        help=
        "Custom boot-args, will prompt user to enter, don't enter a value upon running PyBoot (Default is '-v')",
        action='store_true')
    parser.add_argument("-v",
                        "--version",
                        help="List the version of the tool",
                        action="store_true")
    parser.add_argument("-c",
                        "--credits",
                        help="List credits",
                        action="store_true")
    parser.add_argument("-f",
                        "--fix",
                        help="Fix img4tool/irecovery related issues",
                        action="store_true")

    if platform.system() == 'Darwin':  # If not MacOS then exit basically
        pass
    elif platform.system() == "Linux":
        sys.exit(
            '\033[91m' +
            "\nSorry this OS is not currently supported!\n\nOnly MacOS machines (Hackintosh or a legitimate Apple computer) are support as of now.\n"
            + '\033[0m')
    elif platform.system() == "Windows":
        sys.exit(
            '\033[91m' +
            "\nSorry Windows will never be supported!\n\nOnly MacOS machines (Hackintosh or a legitimate Apple computer) are support as of now.\n"
            + '\033[0m')
    else:
        sys.exit("Wtf are you even running this on?")

    args = parser.parse_args()
    if args.fix:

        # We need to prompt for what the user needs to fix

        response = input(
            "What do you need to fix?\n1. img4tool\n2. irecovery\n3. Both\n(1/2/3)\n"
        )
        if response == "1":
            print(
                "Downloading latest img4tool release from Tihmstar's github..."
            )

            if os.path.exists("img4tool.zip"):
                os.remove("img4tool.zip")

            url = "https://github.com/tihmstar/img4tool/releases/download/182/buildroot_macos-latest.zip"
            r = requests.get(url, allow_redirects=True)

            open('img4tool.zip', 'wb').write(r.content)

            if os.path.exists("img4tool"):
                shutil.rmtree("img4tool")
                os.mkdir("img4tool")
            else:
                os.mkdir("img4tool")

            shutil.move("img4tool.zip", "img4tool/img4tool.zip")
            os.chdir("img4tool")

            with ZipFile('img4tool.zip', 'r') as zipObj:

                zipObj.extractall()

            os.chdir("../")
            os.remove("./resources/bin/img4tool")
            shutil.move(
                "img4tool/buildroot_macos-latest/usr/local/bin/img4tool",
                "resources/bin/img4tool")

            st = os.stat('resources/bin/img4tool')
            os.chmod('resources/bin/img4tool', st.st_mode | stat.S_IEXEC)

            if os.path.exists("/usr/local/include/img4tool"):
                shutil.rmtree("/usr/local/include/img4tool")

            shutil.move(
                "img4tool/buildroot_macos-latest/usr/local/include/img4tool",
                "/usr/local/include/img4tool")

            if os.path.exists("/usr/local/lib/libimg4tool.a"):
                os.remove("/usr/local/lib/libimg4tool.a")

            shutil.move(
                "img4tool/buildroot_macos-latest/usr/local/lib/libimg4tool.a",
                "/usr/local/lib/libimg4tool.a")

            if os.path.exists("/usr/local/lib/libimg4tool.la"):
                os.remove("/usr/local/lib/libimg4tool.la")

            shutil.move(
                "img4tool/buildroot_macos-latest/usr/local/lib/libimg4tool.la",
                "/usr/local/lib/libimg4tool.la")

            if os.path.exists("/usr/local/lib/pkgconfig/libimg4tool.pc"):
                os.remove("/usr/local/lib/pkgconfig/libimg4tool.pc")

            shutil.move(
                "img4tool/buildroot_macos-latest/usr/local/lib/pkgconfig/libimg4tool.pc",
                "/usr/local/lib/pkgconfig/libimg4tool.pc")

            print(
                "img4tool has been installed, you can now use PyBoot normally!"
            )
        elif response == "2":

            if os.path.exists("/usr/local/bin/brew"):
                print("Found brew, installing libirecovery now")
            else:
                print("Error: Could not find brew!")
                choice = input(
                    "Do you want to install brew now to install irecovery? (y/n)"
                )
                if choice == "y" or choice == "Y":
                    cmd = '/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"'
                    so = subprocess.Popen(cmd, shell=True)
                    print(so)
                else:
                    print(
                        "You will need to manually install brew from brew.sh to install irecovery. Exiting..."
                    )
                    exit(0)
            cmd = 'brew install --HEAD libimobiledevice'
            subprocess.run(cmd, shell=True, check=True)

            cmd = 'brew link --overwrite libimobiledevice'
            subprocess.run(cmd, shell=True, check=True)

            print(
                "Downloading latest irecovery source from libimobiledevice's github..."
            )

            url = "https://github.com/libimobiledevice/libirecovery/archive/master.zip"
            r = requests.get(url, allow_redirects=True)

            open('irecovery.zip', 'wb').write(r.content)

            if os.path.exists("irecovery"):
                shutil.rmtree("irecovery")
                os.mkdir("irecovery")
            else:
                os.mkdir("irecovery")

            shutil.move("irecovery.zip", "irecovery/irecovery.zip")
            os.chdir("irecovery")

            with ZipFile('irecovery.zip', 'r') as zipObj:

                zipObj.extractall()

            os.chdir("libirecovery-master")

            st = os.stat('autogen.sh')
            os.chmod('autogen.sh', st.st_mode | stat.S_IEXEC)

            subprocess.run("./autogen.sh", shell=True, check=True)

            subprocess.run("make", shell=True, check=True)

            subprocess.run("sudo make install", shell=True, check=True)

            if os.path.exists("/usr/local/bin/irecovery"):
                os.remove("../../resources/bin/irecovery")
                shutil.copy("/usr/local/bin/irecovery",
                            "../../resources/bin/irecovery")
                st = os.stat('../../resources/bin/irecovery')
                os.chmod('../../resources/bin/irecovery',
                         st.st_mode | stat.S_IEXEC)
            else:
                print(
                    "Something went wrong while compiling irecovery, please open an issue on Github with a screenshot of the above output. Exiting..."
                )
                exit(0)

            print(
                "irecovery has been installed, you can now use PyBoot normally!"
            )

        elif response == "3":
            print(
                "Downloading latest img4tool release from Tihmstar's github..."
            )

            if os.path.exists("img4tool.zip"):
                os.remove("img4tool.zip")

            url = "https://github.com/tihmstar/img4tool/releases/download/182/buildroot_macos-latest.zip"
            r = requests.get(url, allow_redirects=True)

            open('img4tool.zip', 'wb').write(r.content)

            if os.path.exists("img4tool"):
                shutil.rmtree("img4tool")
                os.mkdir("img4tool")
            else:
                os.mkdir("img4tool")

            shutil.move("img4tool.zip", "img4tool/img4tool.zip")
            os.chdir("img4tool")

            with ZipFile('img4tool.zip', 'r') as zipObj:

                zipObj.extractall()

            os.chdir("../")
            os.remove("./resources/bin/img4tool")
            shutil.move(
                "img4tool/buildroot_macos-latest/usr/local/bin/img4tool",
                "resources/bin/img4tool")

            st = os.stat('resources/bin/img4tool')
            os.chmod('resources/bin/img4tool', st.st_mode | stat.S_IEXEC)

            if os.path.exists("/usr/local/include/img4tool"):
                shutil.rmtree("/usr/local/include/img4tool")

            shutil.move(
                "img4tool/buildroot_macos-latest/usr/local/include/img4tool",
                "/usr/local/include/img4tool")

            if os.path.exists("/usr/local/lib/libimg4tool.a"):
                os.remove("/usr/local/lib/libimg4tool.a")

            shutil.move(
                "img4tool/buildroot_macos-latest/usr/local/lib/libimg4tool.a",
                "/usr/local/lib/libimg4tool.a")

            if os.path.exists("/usr/local/lib/libimg4tool.la"):
                os.remove("/usr/local/lib/libimg4tool.la")

            shutil.move(
                "img4tool/buildroot_macos-latest/usr/local/lib/libimg4tool.la",
                "/usr/local/lib/libimg4tool.la")

            if os.path.exists("/usr/local/lib/pkgconfig/libimg4tool.pc"):
                os.remove("/usr/local/lib/pkgconfig/libimg4tool.pc")

            shutil.move(
                "img4tool/buildroot_macos-latest/usr/local/lib/pkgconfig/libimg4tool.pc",
                "/usr/local/lib/pkgconfig/libimg4tool.pc")

            if os.path.exists("/usr/local/bin/brew"):
                print("Found brew, installing libirecovery now")
            else:
                print("Error: Could not find brew!")
                choice = input(
                    "Do you want to install brew now to install irecovery? (y/n)"
                )
                if choice == "y" or choice == "Y":
                    cmd = '/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"'
                    so = subprocess.Popen(cmd, shell=True)
                    print(so)
                else:
                    print(
                        "You will need to manually install brew from brew.sh to install irecovery. Exiting..."
                    )
                    exit(0)
            cmd = 'brew install --HEAD libimobiledevice'
            subprocess.run(cmd, shell=True, check=True)

            cmd = 'brew link --overwrite libimobiledevice'
            subprocess.run(cmd, shell=True, check=True)

            print(
                "Downloading latest irecovery source from libimobiledevice's github..."
            )

            url = "https://github.com/libimobiledevice/libirecovery/archive/master.zip"
            r = requests.get(url, allow_redirects=True)

            open('irecovery.zip', 'wb').write(r.content)

            if os.path.exists("irecovery"):
                shutil.rmtree("irecovery")
                os.mkdir("irecovery")
            else:
                os.mkdir("irecovery")

            shutil.move("irecovery.zip", "irecovery/irecovery.zip")
            os.chdir("irecovery")

            with ZipFile('irecovery.zip', 'r') as zipObj:

                zipObj.extractall()

            os.chdir("libirecovery-master")

            st = os.stat('autogen.sh')
            os.chmod('autogen.sh', st.st_mode | stat.S_IEXEC)

            subprocess.run("./autogen.sh", shell=True, check=True)

            subprocess.run("make", shell=True, check=True)

            subprocess.run("sudo make install", shell=True, check=True)

            if os.path.exists("/usr/local/bin/irecovery"):
                os.remove("../../resources/bin/irecovery")
                shutil.copy("/usr/local/bin/irecovery",
                            "../../resources/bin/irecovery")
                st = os.stat('../../resources/bin/irecovery')
                os.chmod('../../resources/bin/irecovery',
                         st.st_mode | stat.S_IEXEC)
            else:
                print(
                    "Something went wrong while compiling irecovery, please open an issue on Github with a screenshot of the above output. Exiting..."
                )
                exit(0)

            print(
                "irecovery has been installed, you can now use PyBoot normally!"
            )
        else:
            print("Unrecognized input, exiting...")
            exit(0)
        exit(0)
    if args.credits:
        print('\033[95m' + "\nPyBoot Created by: Matty - @mosk_i\n" +
              '\033[0m')
        print('\033[94m' + "Other Tools by -\n" + '\033[0m')
        print('\033[92m' + "Thimstar - [img4tool]")
        print("realnp - [ibootim]")
        print("axi0mX - [ipwndfu/checkm8]")
        print("dayt0n - [kairos]")
        print("xerub - [img4]")
        print("Marco Grassi - [PartialZip]")
        print("Merculous - [ios-python-tools]")
        print("0x7ff - [Eclipsa]")
        print("Ralph0045 - [dtree_patcher/Kernel64Patcher]")
        print("mcg29_ - [amfi patching stuff]")
        print("libimobiledevice team - [irecovery]\n" + '\033[0m')
        sys.exit()
    elif args.pwn:
        pwn.pwndfumode()
        exit(22)

    elif args.ipsw:
        if args.amfi:
            amfiPatches = True
            input(
                "Warning: To applying AMFI patches, you need to compile and install https://github.com/Ralph0045/liboffsetfinder64 otherwise it will not work.\nPress enter when you have done this or if you already have it installed."
            )
        else:
            amfiPatches = False
        if args.bootlogo:
            useCustomLogo = True
            logopath = args.bootlogo[0]
        else:
            useCustomLogo = False
            logopath = "null"
        if args.dualboot:
            bootOtherOS = True
            sysPartName = args.dualboot[0]
            if args.debug:
                print(
                    "Debugging mode enabled! You can use a serial cable to see more output for debugging issues"
                )
                bootArgs = f"-v serial=3 rd={sysPartName}"
            else:
                bootArgs = f"-v rd={sysPartName}"
            if args.bootargs:
                print(
                    f"\n" + '\033[93m' + "WARNING:" + '\033[0m' +
                    f"'-a' was specified indicating the user wanted to set custom boot-args, but '-d' was also set which currently doesn't support custom boot-args...\nIgnoring '-a' and continuing with '{bootArgs}' as the set boot-args.\n"
                )
        else:
            bootOtherOS = False
            if args.bootargs:
                bootArgs = input(
                    "Please enter the boot-args you want to use then press enter: "
                )
            else:
                bootArgs = "-v"

        print(
            '\033[95m' +
            "PyBoot - A tool for tether booting Checkm8 vulnerable iOS devices by Matty, @mosk_i\n"
            + '\033[0m')
        print("Current version is: " + tool_version)
        print(
            "User chose to use a locally stored IPSW, running some checks...")
        if os.path.exists("IPSW"):
            shutil.rmtree("IPSW")
        ipsw.unzipIPSW(args.ipsw[0])
        version = False
        supportedModels = str(
            ipsw.readmanifest("IPSW/BuildManifest.plist", version))
        if args.ipsw[1] in supportedModels:
            print("IPSW is for given device!")
        else:
            print(
                "Sorry this IPSW is not valid for the given device, either run PyBoot with -i to download the correct files or download the correct ipsw from ipsw.me"
            )
            exit(0)
        version = True
        iosVersion = str(ipsw.readmanifest("IPSW/BuildManifest.plist",
                                           version))
        print(
            f"iOS version is: {iosVersion} and device model is: {args.ipsw[1]}"
        )
        time.sleep(5)

        arewelocal = True
        img4.img4stuff(args.ipsw[1], iosVersion, useCustomLogo, logopath,
                       arewelocal, bootOtherOS, bootArgs, amfiPatches)

        # now to pwn device
        print("Exploiting device with checkm8")
        pwn.pwndfumode()

        if args.ios[1] == "iPhone10,1" or args.ios[
                1] == "iPhone10,2" or args.ios[1] == "iPhone10,3" or args.ios[
                    1] == "iPhone10,4" or args.ios[
                        1] == "iPhone10,5" or args.ios[1] == "iPhone10,6":
            A10A11Check = True
        else:
            A10A11Check = False

        # Send files to device and boot =)
        img4.sendImages(iosVersion, useCustomLogo, A10A11Check)

        print("Device should be booting!")
        exit(0)
    elif args.ios:
        print(
            '\033[95m' +
            "PyBoot - A tool for tether booting Checkm8 vulnerable iOS devices by Matty, @mosk_i\n"
            + '\033[0m')
        print("Current version is: " + tool_version)
        if args.amfi:
            amfiPatches = True
            input(
                "Warning: To applying AMFI patches, you need to compile and install https://github.com/Ralph0045/liboffsetfinder64 otherwise it will not work.\nPress enter when you have done this or if you already have it installed."
            )

        else:
            amfiPatches = False
        if args.bootlogo:
            useCustomLogo = True
            logopath = args.bootlogo[0]
        else:
            useCustomLogo = False
            logopath = "null"
        if args.dualboot:
            bootOtherOS = True
            sysPartName = args.dualboot[0]
            if args.debug:
                print(
                    "Debugging mode enabled! You can use a serial cable to see more output for debugging issues"
                )
                bootArgs = f"-v serial=3 rd={sysPartName}"
            else:
                bootArgs = f"-v rd={sysPartName}"
            print(
                f"User choose to boot {args.ios[1]} from /dev/{sysPartName}.")
            if args.bootargs:
                print(
                    f"\n" + '\033[93m' + "WARNING:" + '\033[0m' +
                    f"'-a' was specified indicating the user wanted to set custom boot-args, but '-d' was also set which currently doesn't support custom boot-args...\nIgnoring '-a' and continuing with '{bootArgs}' as the set boot-args.\n"
                )
        else:
            bootOtherOS = False
            if args.bootargs:
                bootArgs = input(
                    "Please enter the boot-args you want to use then press enter: "
                )
            else:
                bootArgs = "-v"

        print("Make sure your device is connected in DFU mode")
        time.sleep(5)
        arewelocal = False
        img4.img4stuff(args.ios[0], args.ios[1], useCustomLogo, logopath,
                       arewelocal, bootOtherOS, bootArgs, amfiPatches)

        # now to pwn device
        print("Exploiting device with checkm8")
        pwn.pwndfumode()

        if args.ios[0] == "iPhone10,1" or args.ios[
                0] == "iPhone10,2" or args.ios[0] == "iPhone10,3" or args.ios[
                    0] == "iPhone10,4" or args.ios[
                        0] == "iPhone10,5" or args.ios[
                            0] == "iPhone10,6" or args.ios[
                                0] == "iPhone9,1" or args.ios[
                                    0] == "iPhone9,2" or args.ios[
                                        0] == "iPhone9,3" or args.ios[
                                            0] == "iPhone9,4":
            A10A11Check = True
            print(
                "Your device has an A10/A11 CPU, you may run into some issues once booted. You have been warned..."
            )
            time.sleep(3)
        else:
            A10A11Check = False

        # Send files to device and boot =)
        img4.sendImages(args.ios[1], useCustomLogo, A10A11Check)

        print("Device should be booting!")
        removeFiles()
        exit(2)

    elif args.version:
        sys.exit(f"Current version is: {tool_version}")

    else:
        sys.exit(parser.print_help(sys.stderr))
Beispiel #4
0
def main():
    removeFiles = [
        'resources/devicetree.im4p', 'resources/devicetree.img4',
        'resources/ibec.im4p', 'resources/ibec.img4', 'resources/ibec.raw',
        'resources/ibec.pwn', 'resources/ibec.patched', 'resources/ibss.im4p',
        'resources/ibss.img4', 'resources/ibss.raw', 'resources/ibss.pwn',
        'resources/ibss.patched', 'resources/kernel.im4p',
        'resources/kernel.img4', 'resources/manifest.plist',
        'resources/shsh.shsh', 'resources/trustcache.im4p',
        'resources/trustcache.img4', 'resources/bootlogo.im4p',
        'resources/bootlogo.ibootim', "resources/bootlogo.img4"
    ]

    for item in removeFiles:
        if os.path.isfile(item):
            os.remove(item)

    utils.clean()

    argv = sys.argv

    text = 'PyBoot - A tool for tether booting Checkm8 vulnerable iOS devices by Matty, @mosk_i.'
    parser = argparse.ArgumentParser(
        description=text,
        usage=
        f"pyboot -i 'iOS version'\n\nE.G './pyboot -i iPhone9,2 13.2.3 -b ~/Downloads/bootlogo.png'\n\nCurrent PyBoot version is: {tool_version}"
    )
    parser.add_argument("-i",
                        "--ios",
                        help="iOS version you wish to boot",
                        nargs=2,
                        metavar=('DEVICE', 'iOS'))
    parser.add_argument(
        "-b",
        "--bootlogo",
        help=
        "Path to .PNG you wish to use as a custom Boot Logo (Must be a .png file with the correct resolution/aspect ratio)",
        nargs=1,
        metavar=("LOGO"))
    parser.add_argument(
        '-p',
        '--pwn',
        help='Enter PWNDFU mode, which will also apply signature patches',
        action='store_true')
    parser.add_argument("-v",
                        "--version",
                        help="List the version of the tool",
                        action="store_true")
    parser.add_argument("-c",
                        "--credits",
                        help="List credits",
                        action="store_true")

    if platform.system() == 'Darwin':  # If not MacOS then exit basically
        pass
    elif platform.system() == "Linux":
        sys.exit(
            '\033[91m' +
            "\nSorry this OS is not currently supported!\n\nOnly MacOS machines (Hackintosh or a legitimate Apple computer) are support as of now.\n"
            + '\033[0m')
    elif platform.system() == "Windows":
        sys.exit(
            '\033[91m' +
            "\nSorry Windows will never be supported!\n\nOnly MacOS machines (Hackintosh or a legitimate Apple computer) are support as of now.\n"
            + '\033[0m')
    else:
        sys.exit("Wtf are you even running this on?")

    args = parser.parse_args()

    if args.credits:
        print('\033[95m' + "\nCreated by: Matty - @mosk_i\n" + '\033[0m')
        print('\033[94m' + "Other parts by -\n" + '\033[0m')
        print('\033[92m' + "Thimstar - [img4tool]")
        print("realnp - [ibootim]")
        print("axi0mX - [ipwndfu/checkm8]")
        print("Marco Grassi - [PartialZip]")
        print("Merculous - [ios-python-tools]")
        print("0x7ff - [Eclipsa]")
        print("libimobiledevice team - [irecovery]\n" + '\033[0m')
        sys.exit()
    elif args.pwn:
        pwn.pwndfumode()
        exit(22)

    elif args.ios:

        pass

        if args.bootlogo:
            useCustomLogo = True
            logopath = argv[5]
        else:
            useCustomLogo = False
            logopath = "null"

        print(
            '\033[95m' +
            "PyBoot - A tool for tether booting Checkm8 vulnerable iOS devices by Matty, @mosk_i\n"
            + '\033[0m')
        print("Current version is: " + tool_version)

        if "10." in argv[3]:
            print(
                "\nWARNING - 10.x Currently WILL NOT BOOT. You can try if you want to but expect it not to boot!\nPress enter to continue or type anything else and press enter to exit"
            )
            choice = input("")
            if choice == "":
                pass
            else:
                print("Exiting...")
                exit(2)

        print("Make sure your device is connected in DFU mode")
        time.sleep(5)
        img4.img4stuff(argv[2], argv[3], useCustomLogo, logopath)

        # now to pwn device
        print("Exploiting device with checkm8")
        pwn.pwndfumode()

        # Send files to device and boot =)
        img4.sendImages(argv[3], useCustomLogo)

        print("Device should be booting!")
        exit(2)

    elif args.version:
        sys.exit(f"Current version is: {tool_version}")

    else:
        sys.exit(parser.print_help(sys.stderr))