Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evilpenguin/APKProxyHelper
Patches those pesky APKs for proxy use.
https://github.com/evilpenguin/APKProxyHelper
Last synced: 27 days ago
JSON representation
Patches those pesky APKs for proxy use.
- Host: GitHub
- URL: https://github.com/evilpenguin/APKProxyHelper
- Owner: evilpenguin
- Created: 2020-11-06T20:59:00.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-03T00:26:54.000Z (about 4 years ago)
- Last Synced: 2024-08-03T13:02:04.196Z (4 months ago)
- Language: Python
- Homepage:
- Size: 34 MB
- Stars: 48
- Watchers: 5
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - evilpenguin/APKProxyHelper - Patches those pesky APKs for proxy use. (Python)
README
# APKProxyHelper
APKProxyHelper paches an apk for proxying.Usage
----------
```
$ python3 aph.py -h
usage: APKProxyHelper [-h] --apk APK [--apktool APKTOOL]optional arguments:
-h, --help show this help message and exit
--apk APK, -a APK The path to the apk file
--apktool APKTOOL, -atv APKTOOL
apktool version 2.4.1 or 2.5.0
```Output
----------
```
$ python3 aph.py -a apk.apk
[*] Decompiling apk.apk
.....
[*] Adding network file to apk/res/xml
[*] Updating manifest at apk/AndroidManifest.xml
[*] Repackaging to apk_proxy.apk
......
[*] Re-signing apk apk_proxy.apk
.....
[*] Cleaing up directory apk
```Manual Resign
----------
- `keytool -genkey -v -keystore debug.keystore -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000`
- `jarsigner -verbose -keystore debug.keystore -storepass android -keypass android *.apk androiddebugkey`