Skip to content

Commit

Permalink
chore: Bump androguard from 3.3.5 to 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pnu-s committed Jan 2, 2024
1 parent 02b1efe commit 843f473
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions exodus_core/analysis/static_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,26 @@
import os
import re
import subprocess
import sys
import zipfile
from collections import namedtuple
from future.moves import sys
from hashlib import sha256, sha1
from tempfile import NamedTemporaryFile, TemporaryDirectory

import dhash
import requests
import six
from androguard.core.bytecodes import axml
from androguard.core.bytecodes.apk import APK
from androguard.core import axml
from androguard.core.apk import APK
from androguard.util import set_log
from cryptography.x509.name import ObjectIdentifier, _NAMEOID_DEFAULT_TYPE, _ASN1Type, NameAttribute
from PIL import Image

PHASH_SIZE = 8


set_log("INFO")

def which(program):
def is_exe(fpath):
return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
androguard==3.3.5
androguard==4.0.2
cryptography==41.0.6
dhash==1.4
jellyfish==0.5.6
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
sys.exit(1)

install_requires = [
'androguard==3.3.5',
'androguard==4.0.2',
'cryptography==41.0.6',
'dhash==1.4',
'jellyfish==0.5.6',
Expand Down

0 comments on commit 843f473

Please sign in to comment.