mirror of
https://github.com/chiteroman/PlayIntegrityFix.git
synced 2025-01-19 03:22:39 +02:00
57 lines
1.7 KiB
Bash
57 lines
1.7 KiB
Bash
# Conditional sensitive properties
|
|
|
|
resetprop_if_diff() {
|
|
local NAME="$1"
|
|
local EXPECTED="$2"
|
|
local CURRENT="$(resetprop "$NAME")"
|
|
|
|
[ -z "$CURRENT" ] || [ "$CURRENT" = "$EXPECTED" ] || resetprop "$NAME" "$EXPECTED"
|
|
}
|
|
|
|
resetprop_if_match() {
|
|
local NAME="$1"
|
|
local CONTAINS="$2"
|
|
local VALUE="$3"
|
|
|
|
[[ "$(resetprop "$NAME")" = *"$CONTAINS"* ]] && resetprop "$NAME" "$VALUE"
|
|
}
|
|
|
|
# Magisk recovery mode
|
|
resetprop_if_match ro.bootmode recovery unknown
|
|
resetprop_if_match ro.boot.mode recovery unknown
|
|
resetprop_if_match vendor.boot.mode recovery unknown
|
|
|
|
# SELinux
|
|
resetprop_if_diff ro.boot.selinux enforcing
|
|
# use delete since it can be 0 or 1 for enforcing depending on OEM
|
|
if [ -n "$(resetprop ro.build.selinux)" ]; then
|
|
resetprop --delete ro.build.selinux
|
|
fi
|
|
|
|
# use toybox to protect *stat* access time reading
|
|
if [ "$(toybox cat /sys/fs/selinux/enforce)" = "0" ]; then
|
|
chmod 640 /sys/fs/selinux/enforce
|
|
chmod 440 /sys/fs/selinux/policy
|
|
fi
|
|
|
|
# Late props which must be set after boot_completed
|
|
{
|
|
until [[ "$(getprop sys.boot_completed)" == "1" ]]; do
|
|
sleep 1
|
|
done
|
|
|
|
# SafetyNet/Play Integrity | Avoid breaking Realme fingerprint scanners
|
|
resetprop ro.boot.flash.locked 1
|
|
|
|
# SafetyNet/Play Integrity | Avoid breaking Oppo fingerprint scanners
|
|
resetprop ro.boot.vbmeta.device_state locked
|
|
|
|
# SafetyNet/Play Integrity | Avoid breaking OnePlus display modes/fingerprint scanners
|
|
resetprop vendor.boot.verifiedbootstate green
|
|
|
|
# SafetyNet/Play Integrity | Avoid breaking OnePlus display modes/fingerprint scanners on OOS 12
|
|
resetprop ro.boot.verifiedbootstate green
|
|
resetprop ro.boot.veritymode enforcing
|
|
resetprop vendor.boot.vbmeta.device_state locked
|
|
}&
|