-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2987192
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Zygisk-SSL-Unpinning | ||
|
||
Bypass ssl pinning with zygisk. | ||
|
||
## Supports | ||
- [x] arm64-v8a | ||
- [ ] armeabi-v7a [TODO] | ||
- [ ] x86 [TODO] | ||
- [ ] x86_64 [TODO] | ||
|
||
## Usage | ||
- Enable zygisk in magisk or ZygiskNext (KernelSU) | ||
- Flash the module | ||
- Reboot | ||
- Rename the file `config.json.example` to `config.json` in the path `/data/local/tmp/zyg.ssl` | ||
- Replace `com.target.package` to your package name | ||
- Launch your app (if the configuration is not updated, relaunch again) | ||
- check `adb logcat | grep -i ZygiskSSL` to see if an error is logged | ||
|
||
|
||
## Config File | ||
```json | ||
{ | ||
"targets": [ | ||
{ | ||
"pkg_name" : "com.target.package", | ||
"enable": true, | ||
"start_safe": true, | ||
"start_delay": 1000 | ||
} | ||
] | ||
} | ||
``` | ||
### pkg_name | ||
Identifier of the application. | ||
### enable | ||
If set to false, then this module will ignore this configuration. | ||
### start_safe | ||
If set to true, then this module wait for process initialization to complete. | ||
### start_delay | ||
Delay in milliseconds. | ||
|