-
-
Notifications
You must be signed in to change notification settings - Fork 365
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
1 parent
8e239aa
commit 972bf31
Showing
13 changed files
with
150 additions
and
137 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,15 +1,46 @@ | ||
# Play Integrity Fix | ||
|
||
This module attempts to fix Play Integrity verdicts to get a certified device on bootloader unlocked devices. | ||
This module tries to fix Play Integrity and SafetyNet verdicts to get a valid attestation. | ||
|
||
Device verdict should pass by default. | ||
If not, try removing /data/adb/pif.json file. | ||
DO NOT REMOVE pif.json in module's folder! | ||
You will need root and Zygisk, so you must choose ONE of this three setups: | ||
|
||
Wiki: https://github.com/chiteroman/PlayIntegrityFix/wiki | ||
- [Magisk](https://github.com/topjohnwu/Magisk) with Zygisk enabled. | ||
- [KernelSU](https://github.com/tiann/KernelSU) with [ZygiskNext](https://github.com/Dr-TSNG/ZygiskNext) module installed. | ||
- [APatch](https://github.com/bmax121/APatch) with [ZygiskNext](https://github.com/Dr-TSNG/ZygiskNext) module installed. | ||
|
||
XDA post: https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/ | ||
After flashing and reboot your device, you can check PI and SN using these apps: | ||
|
||
Telegram group: https://t.me/playintegrityfix | ||
- Play Integrity -> https://play.google.com/store/apps/details?id=gr.nikolasspyr.integritycheck | ||
- SafetyNet -> https://play.google.com/store/apps/details?id=rikka.safetynetchecker | ||
|
||
Donations: https://www.paypal.com/paypalme/chiteroman | ||
NOTE: if you get an error message about a limit, you need to use another app, this is because a lot of users are requesting an attestation. | ||
|
||
NOTE: SafetyNet is obsolete, more info here: https://developer.android.com/privacy-and-security/safetynet/deprecation-timeline | ||
|
||
Also, if you are using custom rom or custom kernel, be sure that your kernel name isn't blacklisted, you can check it running ```uname -r``` command. This is a list of banned strings: https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/post-89308909 | ||
|
||
After requesting an attestation in Play Integrity API you should get this result: | ||
|
||
- MEETS_BASIC_INTEGRITY ✅ | ||
- MEETS_DEVICE_INTEGRITY ✅ | ||
- MEETS_STRONG_INTEGRITY ❌ | ||
- MEETS_VIRTUAL_INTEGRITY ❌ | ||
|
||
You can know more about verdicts in this post: https://xdaforums.com/t/info-play-integrity-api-replacement-for-safetynet.4479337/ | ||
|
||
And in SafetyNet you should get this: | ||
|
||
- basicIntegrity: true | ||
- ctsProfileMatch: true | ||
- evaluationType: BASIC | ||
|
||
NOTE: Strong verdict is impossible to pass on unlocked bootloader devices, there are few devices and "exploits" which will allow you to pass it, but, in normal conditions, this verdict will be green only if you are using stock ROM and locked bootloader. The old posts talking about Strong pass was an "exploit" in Google servers, obviously, now it's patched. | ||
|
||
FAQ: https://xdaforums.com/t/pif-faq.4653307/ | ||
|
||
## Download | ||
https://github.com/chiteroman/PlayIntegrityFix/releases/latest | ||
|
||
## Donations | ||
|
||
[PayPal](https://www.paypal.com/paypalme/chiteroman) |
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
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
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
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
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
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 |
---|---|---|
@@ -1,6 +1,3 @@ | ||
buildscript { | ||
val agp_version by extra("8.2.2") | ||
} | ||
plugins { | ||
id("com.android.application") version "8.2.2" apply false | ||
id("com.android.application") version "8.3.0" apply false | ||
} |
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 |
---|---|---|
@@ -1,10 +1,14 @@ | ||
We have a Telegram group! | ||
If you want to share your knowledge join: | ||
Telegram channel: | ||
https://t.me/playintegrityfix | ||
|
||
Device verdict should pass by default. | ||
If not, try removing /data/adb/pif.json file. | ||
|
||
# v15.9.4 | ||
Donations: | ||
https://www.paypal.com/paypalme/chiteroman | ||
|
||
- Misc improvements. | ||
# v15.9.5 | ||
|
||
- Strip libraries and reduce their size. | ||
- Fix attestation not passing on some devices. | ||
- Do not auto remove conflict apps, users should remove them manually. |
Oops, something went wrong.