mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-22 12:43:23 +00:00
Fixed cut command in the extract APK with adb
This commit is contained in:
parent
a70ff8a2c3
commit
47fe716818
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ adb pull /data/app/com.android.insecurebankv2-Jnf8pNgwy3QA_U5f-n_4jQ==/base.apk
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
mkdir splits
|
mkdir splits
|
||||||
adb shell pm path com.android.insecurebankv2 | cut -d ':' -f 1 | xargs -n1 -i adb pull {} splits
|
adb shell pm path com.android.insecurebankv2 | cut -d ':' -f 2 | xargs -n1 -i adb pull {} splits
|
||||||
java -jar ../APKEditor.jar m -i splits/ -o merged.apk
|
java -jar ../APKEditor.jar m -i splits/ -o merged.apk
|
||||||
|
|
||||||
# after merging, you will need to align and sign the apk, personally, I like to use the uberapksigner
|
# after merging, you will need to align and sign the apk, personally, I like to use the uberapksigner
|
||||||
|
|
Loading…
Reference in a new issue