mirror of
https://github.com/chiteroman/PlayIntegrityFix.git
synced 2025-01-19 11:32:39 +02:00
76 lines
2.1 KiB
Bash
76 lines
2.1 KiB
Bash
# Sensitive properties
|
|
|
|
RESETPROP="${0%/*}/resetprop"
|
|
|
|
chmod 755 $RESETPROP
|
|
|
|
check_resetprop() {
|
|
local NAME=$1
|
|
local EXPECTED=$2
|
|
local VALUE=$(resetprop $NAME)
|
|
[ -z $VALUE ] || [ $VALUE = $EXPECTED ] || $RESETPROP -n $NAME $EXPECTED
|
|
}
|
|
|
|
maybe_set_prop() {
|
|
local prop="$1"
|
|
local contains="$2"
|
|
local value="$3"
|
|
|
|
if [[ "$(getprop "$prop")" == *"$contains"* ]]; then
|
|
$RESETPROP -n "$prop" "$value"
|
|
fi
|
|
}
|
|
|
|
# Magisk recovery mode
|
|
maybe_set_prop ro.bootmode recovery unknown
|
|
maybe_set_prop ro.boot.mode recovery unknown
|
|
maybe_set_prop vendor.boot.mode recovery unknown
|
|
|
|
# Hiding SELinux | Permissive status
|
|
if [ -n "$(getprop ro.build.selinux)" ]; then
|
|
resetprop --delete ro.build.selinux
|
|
fi
|
|
|
|
# Hiding SELinux | 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
|
|
|
|
# Reset props after boot completed to avoid breaking some weird devices/ROMs...
|
|
{
|
|
until [[ "$(getprop sys.boot_completed)" == "1" ]]; do
|
|
sleep 1
|
|
done
|
|
|
|
# SafetyNet/Play Integrity | Avoid breaking Realme fingerprint scanners
|
|
check_resetprop ro.boot.flash.locked 1
|
|
|
|
# SafetyNet/Play Integrity | Avoid breaking Oppo fingerprint scanners
|
|
check_resetprop ro.boot.vbmeta.device_state locked
|
|
|
|
# SafetyNet/Play Integrity | Avoid breaking OnePlus display modes/fingerprint scanners
|
|
check_resetprop vendor.boot.verifiedbootstate green
|
|
|
|
# SafetyNet/Play Integrity | Avoid breaking OnePlus display modes/fingerprint scanners on OOS 12
|
|
check_resetprop ro.boot.verifiedbootstate green
|
|
check_resetprop ro.boot.veritymode enforcing
|
|
check_resetprop vendor.boot.vbmeta.device_state locked
|
|
|
|
# RootBeer, Microsoft
|
|
check_resetprop ro.build.tags release-keys
|
|
|
|
# Samsung
|
|
check_resetprop ro.boot.warranty_bit 0
|
|
check_resetprop ro.vendor.boot.warranty_bit 0
|
|
check_resetprop ro.vendor.warranty_bit 0
|
|
check_resetprop ro.warranty_bit 0
|
|
|
|
# OnePlus
|
|
check_resetprop ro.is_ever_orange 0
|
|
|
|
# Other
|
|
check_resetprop ro.build.type user
|
|
check_resetprop ro.debuggable 0
|
|
check_resetprop ro.secure 1
|
|
}& |