Forked from barezina/backup.py
Created
January 14, 2020 23:34
Star
You must be signed in to star a gist
BackupRipper for iOS - Unpack an iOS iPhone Backup into its native files.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sqlite3 | |
import os | |
print('BackupRipper for iOS - v1.0') | |
def dict_factory(cursor, row): | |
d = {} | |
for idx, col in enumerate(cursor.description): | |
d[col[0]] = row[idx] | |
return d | |
backuppath = '/home/bob/Desktop/bob_iphone_oct_2019/' | |
conn = sqlite3.connect(backuppath + 'Manifest.db') | |
conn.row_factory = dict_factory | |
c = conn.cursor() | |
c.execute(""" | |
select substr(fileId, 0, 3) as folder, fileID, relativePath | |
from Files | |
""") | |
results = c.fetchall() | |
for row in results: | |
folder = row['folder'] | |
fileID = row['fileID'] | |
relativePath = row['relativePath'] | |
fileName = relativePath.split('/').pop() | |
pathElements = relativePath.split('/') | |
pathElements.pop() | |
pathOnly = '/'.join(pathElements) | |
print(relativePath) | |
if not os.path.isdir(backuppath + 'EXTRACTED_FILES/' + pathOnly): | |
os.makedirs(backuppath + 'EXTRACTED_FILES/' + pathOnly) | |
if os.path.exists(backuppath + folder + '/' + fileID): | |
os.rename(backuppath + folder + '/' + fileID, backuppath + 'EXTRACTED_FILES/' + relativePath) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment