Skip to content

Commit 5b7baa8

Browse files
authored
chore: Bump androguard from 3.3.5 to 4.1.0 (#85)
1 parent 1003b68 commit 5b7baa8

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

exodus_core/analysis/static_analysis.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,25 @@
44
import os
55
import re
66
import subprocess
7+
import sys
78
import zipfile
89
from collections import namedtuple
9-
from future.moves import sys
1010
from hashlib import sha256, sha1
1111
from tempfile import NamedTemporaryFile, TemporaryDirectory
1212

1313
import dhash
1414
import requests
1515
import six
16-
from androguard.core.bytecodes import axml
17-
from androguard.core.bytecodes.apk import APK
16+
from androguard.core import axml
17+
from androguard.core.apk import APK
18+
from androguard.util import set_log
1819
from cryptography.x509.name import ObjectIdentifier, _NAMEOID_DEFAULT_TYPE, _ASN1Type, NameAttribute
1920
from PIL import Image
2021

2122
PHASH_SIZE = 8
2223

24+
set_log("INFO")
25+
2326

2427
def which(program):
2528
def is_exe(fpath):

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
androguard==3.3.5
1+
androguard==4.1.0
22
cryptography==42.0.4
33
dhash==1.4
44
jellyfish==0.5.6

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
sys.exit(1)
1515

1616
install_requires = [
17-
'androguard==3.3.5',
17+
'androguard==4.1.0',
1818
'cryptography==42.0.4',
1919
'dhash==1.4',
2020
'jellyfish==0.5.6',

0 commit comments

Comments
 (0)