mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
has_known_vulnerability(): check .so files with version in filename
This commit is contained in:
parent
e90212fb3a
commit
28740ee036
1 changed files with 1 additions and 1 deletions
|
|
@ -641,7 +641,7 @@ def has_known_vulnerability(filename):
|
|||
files_in_apk = set()
|
||||
with zipfile.ZipFile(filename) as zf:
|
||||
for name in zf.namelist():
|
||||
if name.endswith('libcrypto.so') or name.endswith('libssl.so'):
|
||||
if name.endswith('.so') and ('libcrypto' in name or 'libssl' in name):
|
||||
lib = zf.open(name)
|
||||
while True:
|
||||
chunk = lib.read(4096)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue