Skip to content

Commit

Permalink
chore: Bump androguard from 3.3.5 to 4.1.0 (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
pnu-s authored Mar 11, 2024
1 parent 1003b68 commit 5b7baa8
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,22 +4,25 @@
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):
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.1.0
cryptography==42.0.4
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.1.0',
'cryptography==42.0.4',
'dhash==1.4',
'jellyfish==0.5.6',
Expand Down

0 comments on commit 5b7baa8

Please sign in to comment.