FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Telegram-Android/apkdiff.py at master · TelegramOrg/Telegram-Android · GitHub
TelegramOrg
/
Telegram-Android
Public
forked from
DrKLO/Telegram
Notifications
You must be signed in to change notification settings
Fork
88
Star
278
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Telegram-Android
/
apkdiff.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
63 lines (48 loc) · 1.73 KB
Breadcrumbs
Telegram-Android
/
apkdiff.py
Copy path
File metadata and controls
63 lines (48 loc) · 1.73 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
60
61
62
63
import
sys
from
zipfile
import
ZipFile
def
compareFiles
(
first
,
second
):
while
True
:
firstBytes
=
first
.
read
(
4096
)
secondBytes
=
second
.
read
(
4096
)
if
firstBytes
!=
secondBytes
:
return
False
if
firstBytes
==
b""
and
secondBytes
==
b""
:
break
return
True
def
compare
(
first
,
second
):
FILES_TO_IGNORE
=
[
"META-INF/MANIFEST.MF"
,
"META-INF/CERT.RSA"
,
"META-INF/CERT.SF"
]
firstZip
=
ZipFile
(
first
,
'r'
)
secondZip
=
ZipFile
(
second
,
'r'
)
firstList
=
list
(
filter
(
lambda
firstInfo
:
firstInfo
.
filename
not
in
FILES_TO_IGNORE
,
firstZip
.
infolist
()))
secondList
=
list
(
filter
(
lambda
secondInfo
:
secondInfo
.
filename
not
in
FILES_TO_IGNORE
,
secondZip
.
infolist
()))
if
len
(
firstList
)
!=
len
(
secondList
):
print
(
"APKs has different amount of files (%d != %d)"
%
(
len
(
firstList
),
len
(
secondList
)))
return
False
for
firstInfo
in
firstList
:
found
=
False
for
secondInfo
in
secondList
:
if
firstInfo
.
filename
==
secondInfo
.
filename
:
found
=
True
firstFile
=
firstZip
.
open
(
firstInfo
,
'r'
)
secondFile
=
secondZip
.
open
(
secondInfo
,
'r'
)
if
compareFiles
(
firstFile
,
secondFile
)
!=
True
:
print
(
"APK file %s does not match"
%
firstInfo
.
filename
)
return
False
secondList
.
remove
(
secondInfo
)
break
if
found
==
False
:
print
(
"file %s not found in second APK"
%
firstInfo
.
filename
)
return
False
if
len
(
secondList
)
!=
0
:
for
secondInfo
in
secondList
:
print
(
"file %s not found in first APK"
%
secondInfo
.
filename
)
return
False
return
True
if
__name__
==
'__main__'
:
if
len
(
sys
.
argv
)
!=
3
:
print
(
"Usage: apkdiff <pathToFirstApk> <pathToSecondApk>"
)
sys
.
exit
(
1
)
if
sys
.
argv
[
1
]
==
sys
.
argv
[
2
]
or
compare
(
sys
.
argv
[
1
],
sys
.
argv
[
2
])
==
True
:
print
(
"APKs are the same!"
)
else
:
print
(
"APKs are different!"
)
Back
|
FazBrowse Home
|
New Git URL