-
Notifications
You must be signed in to change notification settings - Fork 34
/
sysdiagnose-mobilebackup.py
59 lines (44 loc) · 1.82 KB
/
sysdiagnose-mobilebackup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#! /usr/bin/env python
# For Python3
# Script to print the values from logs/MobileBackup/com.apple.MobileBackup.plist
# Author: [email protected]
import sys
from optparse import OptionParser
import plistlib
#import pprint
version_string = "sysdiagnose-mobilebackup.py v2019-05-10 Version 1.0"
if sys.version_info[0] < 3:
print("Must be using Python 3! Exiting ...")
exit(-1)
usage = "\n%prog -i inputfile\n"
parser = OptionParser(usage=usage)
parser.add_option("-i", dest="inputfile",
action="store", type="string",
help="logs/MobileBackup/com.apple.MobileBackup.plist To Be Searched")
(options, args) = parser.parse_args()
#no arguments given by user, print help and exit
if len(sys.argv) == 1:
parser.print_help()
exit(-1)
print("Running " + version_string + "\n")
with open(options.inputfile, 'rb') as fp:
pl = plistlib.load(fp)
#pprint.pprint(pl)
#print(pl.keys())
if 'BackupStateInfo' in pl.keys():
for key, val in pl["BackupStateInfo"].items():
#print("key = " + str(key) + ", val = " + str(val))
if key == 'date':
print("BackupStateInfo Date = " + str(val))
if key == 'isCloud':
print("BackupStateInfo isCloud = " + str(val))
if 'RestoreInfo' in pl.keys():
for key, val in pl["RestoreInfo"].items():
if key == 'RestoreDate':
print("RestoreInfo Date = " + str(val))
if key == 'BackupBuildVersion':
print("RestoreInfo BackupBuildVersion = " + str(val))
if key == 'DeviceBuildVersion':
print("RestoreInfo DeviceBuildVersion = " + str(val))
if key == 'WasCloudRestore':
print("RestoreInfo WasCloudRestore = " + str(val))