Fix IC-Info.sisv missing file for Broque Ramdisk
When you back up your iPhone for passcode bypass with activation, it may not generate the IC-Info.sisv file necessary for iCloud login repair. This file is located in the backup ZIP package under FairPlay's iTunes folder, next to the IC-Info.sidb and IC-Info.sids files. Follow this tutorial to generate the IC-Info.sisv from iPhone's backup.
Requirements
- iPhone backup generated with Broque Ramdisk.
- A Desktop computer with Windows or macOS.
- VSCode installed on your system.
- Installed the Property List Editor extension for VSCode.
Generate IC-Info.sisv file
- Navigate to Broque Ramdisk Pro → lib → Backup folder.
- Open the [Archive].zip, and navigate to FairPlay folder.
- Duplicate the file "1" and rename it to "1.plist".
- Open this .plist file using VSCode editor (Property List Editor must be installed).
- From the List View open FairPlayKeyData.
- Copy the key value (Base64 string), but ignore the beginning (first line) and end of the container (last line).
- Use a website tool to decode Base64 string to file, or execute this Python script:
import base64 def decode_base64_to_file(encoded_string, output_file): try: decoded_data = base64.b64decode(encoded_string) with open(output_file, 'wb') as file: file.write(decoded_data) print(f"Decoded data saved to {output_file}") except Exception as e: print("Error:", e) if __name__ == "__main__": encoded_string = input("Enter the Base64 encoded string: ") output_file = input("Enter the name of the output file: ") decode_base64_to_file(encoded_string, output_file)
- Save the file generated files as IC-Info.sisv.
- Delete the 1.plist from the FairPlay folder.
- Copy IC-Info.sisv to Broque Ramdisk Pro → lib → Backup → [Archive].zip → FairPlay → iTunes_Control → iTunes folder. Save the [Archive].zip, and you're done.