You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Backup file goes into stdin, tar file comes out on stdout.
4
+
5
+
## Limitations
6
+
7
+
- Does not support encrypted backups (pull requests welcome!)
8
+
- Does not support uncompressed backups (not sure how to create these?)
9
+
10
+
## Examples
11
+
12
+
To view the contents of a backup
13
+
14
+
```
15
+
./extract.py < backup | tar -tv
16
+
```
17
+
18
+
To extract all files from a backup
19
+
20
+
```
21
+
./extract.py < backup | tar -x
22
+
```
23
+
24
+
# Further info
25
+
26
+
(Details of backup file structure)[https://android.stackexchange.com/questions/23357/is-there-a-way-to-look-inside-and-modify-an-adb-backup-created-file]
27
+
(Further Details)[https://nelenkov.blogspot.co.uk/2012/06/unpacking-android-backups.html] - could be used as a reference to implement backup decryption
0 commit comments