Skip to content

Commit bf4d010

Browse files
authored
Support for apktool d --only-main-classes (#660)
* Support for apktool d --only-main-classes Fixes #659 * Minor fixes, working now.
1 parent d983234 commit bf4d010

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

objection/commands/mobile_packages.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def patch_android_apk(source: str, architecture: str, pause: bool, skip_cleanup:
100100
enable_debug: bool = True, gadget_version: str = None, skip_resources: bool = False,
101101
network_security_config: bool = False, target_class: str = None,
102102
use_aapt2: bool = False, gadget_config: str = None, script_source: str = None,
103-
ignore_nativelibs: bool = True, manifest: str = None, skip_signing: bool = False) -> None:
103+
ignore_nativelibs: bool = True, manifest: str = None, skip_signing: bool = False, only_main_classes: bool = False) -> None:
104104
"""
105105
Patches an Android APK by extracting, patching SMALI, repackaging
106106
and signing a new APK.
@@ -176,7 +176,7 @@ def patch_android_apk(source: str, architecture: str, pause: bool, skip_cleanup:
176176

177177
click.secho('Patcher will be using Gadget version: {0}'.format(github_version), fg='green')
178178

179-
patcher = AndroidPatcher(skip_cleanup=skip_cleanup, skip_resources=skip_resources, manifest=manifest)
179+
patcher = AndroidPatcher(skip_cleanup=skip_cleanup, skip_resources=skip_resources, manifest=manifest, only_main_classes=only_main_classes)
180180

181181
# ensure that we have all of the commandline requirements
182182
if not patcher.are_requirements_met():

objection/console/cli.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -278,9 +278,10 @@ def patchipa(source: str, gadget_version: str, codesign_signature: str, provisio
278278
@click.option('--ignore-nativelibs', '-n', is_flag=True, default=False,
279279
help='Do not change the extractNativeLibs flag in the AndroidManifest.xml.', show_default=False)
280280
@click.option('--manifest', '-m', help='A decoded AndroidManifest.xml file to read.', default=None)
281+
@click.option('--only-main-classes', help="Only patch classes that are in the main dex file.", is_flag=True, default=False)
281282
def patchapk(source: str, architecture: str, gadget_version: str, pause: bool, skip_cleanup: bool,
282283
enable_debug: bool, skip_resources: bool, network_security_config: bool, target_class: str,
283-
use_aapt2: bool, gadget_config: str, script_source: str, ignore_nativelibs: bool, manifest: str, skip_signing: bool) -> None:
284+
use_aapt2: bool, gadget_config: str, script_source: str, ignore_nativelibs: bool, manifest: str, skip_signing: bool, only_main_classes:bool = False) -> None:
284285
"""
285286
Patch an APK with the frida-gadget.so.
286287
"""

objection/utils/patchers/android.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ class AndroidPatcher(BasePlatformPatcher):
199199
}
200200
}
201201

202-
def __init__(self, skip_cleanup: bool = False, skip_resources: bool = False, manifest: str = None):
202+
def __init__(self, skip_cleanup: bool = False, skip_resources: bool = False, manifest: str = None, only_main_classes: bool = False):
203203
super(AndroidPatcher, self).__init__()
204204

205205
self.apk_source = None
@@ -214,6 +214,7 @@ def __init__(self, skip_cleanup: bool = False, skip_resources: bool = False, man
214214
self.keystore = os.path.join(os.path.abspath(os.path.dirname(__file__)), '../assets', 'objection.jks')
215215
self.netsec_config = os.path.join(os.path.abspath(os.path.dirname(__file__)), '../assets',
216216
'network_security_config.xml')
217+
self.only_main_classes = only_main_classes
217218

218219
def is_apktool_ready(self) -> bool:
219220
"""
@@ -404,6 +405,7 @@ def unpack_apk(self):
404405
'decode',
405406
'-f',
406407
'-r' if self.skip_resources else '',
408+
'--only-main-classes' if self.only_main_classes else '',
407409
'-o',
408410
self.apk_temp_directory,
409411
self.apk_source
@@ -412,7 +414,7 @@ def unpack_apk(self):
412414
if len(o.err) > 0:
413415
click.secho('An error may have occurred while extracting the APK.', fg='red')
414416
click.secho(o.err, fg='red')
415-
417+
416418
def inject_internet_permission(self):
417419
"""
418420
Checks the status of the source APK to see if it

0 commit comments

Comments
 (0)