Skip to content

Commit 22277ef

Browse files
committed
added new options dump, debug-enable, patch-gadget, pack-sign-apk, setup-no-root, configure-burp
1 parent 692ff36 commit 22277ef

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# ChangeLog
22

3+
### 0.7.61
4+
- ADDED: Option --dump Dump the configured .apk
5+
- ADDED: Option --debug-enable Enables the android:debuggable, android:allowBackup and android:extractNativeLibs Flags in the android applications manifest
6+
- ADDED: Option --patch-gadget Patches suitable frida gadget into android application, no root needed
7+
- ADDED: Option --pack-sign-apk Pack modified dump to new .apk, perform a zipalin on it and sign it
8+
- ADDED: Option --setup-no-root Setup .apk for non rooted device, combine the flags above
9+
- ADDED: Option --configure-burp Embed burp proxy cert to network config for automatic trust
10+
311
### 0.7.60
412
- ADDED: Find currently running application and activity
513

mpt/console.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1216,6 +1216,8 @@ def cli():
12161216
help='Disable SSL Pinning (<package name> optional)')
12171217
frida.add_argument('-r', '--root-detection', metavar='package-name', nargs='?', type=str, const='',
12181218
help='Disable Root Detection (<package name> optional)')
1219+
frida.add_argument('-pg', '--patch-gadget', metavar='package-name', nargs='?', type=str, const='',
1220+
help='Patch frida gadget into android application without root \n (<package name> optional)')
12191221

12201222
app = parser.add_argument_group("Application", "Perform app related tasks")
12211223
app.add_argument('-l', '--list-packages', metavar='all', nargs='?', type=str, const='',
@@ -1235,8 +1237,6 @@ def cli():
12351237
help='Dump an android application \n (<package name> optional)')
12361238
app.add_argument('-dg', '--debug-enable', metavar='package-name', nargs='?', type=str, const='',
12371239
help='Enable debug- and backup-flag in android application \n (<package name> optional)')
1238-
app.add_argument('-pg', '--patch-gadget', metavar='package-name', nargs='?', type=str, const='',
1239-
help='Patch frida gadget into android application without root \n (<package name> optional)')
12401240
app.add_argument('-psa', '--pack-sign-apk', metavar='package-name', nargs='?', type=str, const='',
12411241
help='Pack modified dump, zipalin it and sign it\n (<package name> optional)')
12421242
app.add_argument('-1', '--setup-no-root', metavar='package-name', nargs='?', type=str, const='',

mpt/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import mpt.config
66
from mpt.config import Config
77

8-
__version__ = '0.7.60'
8+
__version__ = '0.7.61'
99
HOME_FOLDER = expanduser("~")
1010
DEFAULT_MOBILE_FOLDER = os.path.join(HOME_FOLDER, "tools/MOBILE/")
1111
MPT_BIN = os.path.join(DEFAULT_MOBILE_FOLDER, 'bin')

0 commit comments

Comments
 (0)