Skip to content

Commit a5767d3

Browse files
committed
Add instruction how to patch with docker image
1 parent 1254f0e commit a5767d3

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,18 @@ frida -U -l .\instagram-ssl-pinning-bypass.js -f com.instagram.barcelona
4747

4848
You can create your own patched APK.
4949

50+
### Patch using docker image
51+
1. Install docker: [https://docs.docker.com/desktop/](https://docs.docker.com/desktop/)
52+
2. Pull docker image: `docker pull ghcr.io/eltion/instagram-ssl-pinning-bypass:latest`
53+
3. Run docker image in the same folder where the apk is located
54+
55+
```bash
56+
#Linux, MacOS, Windows (PowerShell)
57+
docker run --rm -v "$(pwd):/app" ghcr.io/eltion/instagram-ssl-pinning-bypass:latest -i <input apk> -o <output apk>
58+
59+
#Windows cmd
60+
docker run --rm -v "%cd%:/app" ghcr.io/eltion/instagram-ssl-pinning-bypass:latest -i <input apk> -o <output apk>
61+
```
5062

5163
### Requirements Linux (Ubuntu):
5264
1. Install java JRE: `sudo apt install default-jre`

0 commit comments

Comments
 (0)