Skip to content

Instantly share code, notes, and snippets.

View GMZwinge's full-sized avatar

Georges M. Zwingelstein GMZwinge

View GitHub Profile
@GMZwinge
GMZwinge / parse_manifest.py
Created December 20, 2016 12:26 — forked from aliou/parse_manifest.py
Manifest.mbdb parsing for iOS 5+.
#!/usr/bin/env python
# From http://stackoverflow.com/questions/3085153/how-to-parse-the-manifest-mbdb-file-in-an-ios-4-0-itunes-backup
import sys
import hashlib
mbdx = {}
def getint(data, offset, intsize):
"""Retrieve an integer (big-endian) and new offset from the current offset"""
value = 0