Skip to content

Commit

Permalink
HOTFIX: Bump androguard + remove quark
Browse files Browse the repository at this point in the history
  • Loading branch information
ajinabraham committed Mar 13, 2024
1 parent 641f443 commit a5338ee
Show file tree
Hide file tree
Showing 4 changed files with 372 additions and 109 deletions.
7 changes: 6 additions & 1 deletion mobsf/StaticAnalyzer/views/android/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@
import logging
from pathlib import Path

from androguard.core.bytecodes import apk
from androguard.core import (
androconf,
apk,
)


androconf.logger.remove()
logger = logging.getLogger(__name__)
logging.getLogger('androguard').setLevel(logging.ERROR)

Expand Down
5 changes: 3 additions & 2 deletions mobsf/StaticAnalyzer/views/android/icon_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@

from lxml import etree

from androguard.core.bytecodes import (
from androguard.core import (
androconf,
axml,
)

Expand All @@ -23,7 +24,7 @@
is_path_traversal,
)


androconf.logger.remove()
logger = logging.getLogger(__name__)
logging.getLogger('androguard').setLevel(logging.ERROR)

Expand Down
Loading

0 comments on commit a5338ee

Please sign in to comment.