From b0f94ac2a006bba0985b215eb7bcead08a0d849e Mon Sep 17 00:00:00 2001 From: mhelwig Date: Mon, 20 Nov 2017 09:08:11 +0100 Subject: [PATCH] No apktool requirement for dex analysis --- apk-anal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apk-anal.py b/apk-anal.py index 09e5824..792bad6 100644 --- a/apk-anal.py +++ b/apk-anal.py @@ -206,7 +206,7 @@ def print_results(analysis_results,messages,r2p): if not apktool: apktool = args.apktool -if not apktool or not os.path.isfile(apktool): +if (not apktool or not os.path.isfile(apktool)) and not args.dex: print("[!] Apktool not found. Please adjust path in script or provide it with --apktool") exit(1)