diff --git a/module/action.sh b/module/action.sh
index 89cf0a6..f0599af 100644
--- a/module/action.sh
+++ b/module/action.sh
@@ -4,7 +4,7 @@ MODPATH="${0%/*}"
set +o standalone
unset ASH_STANDALONE
-sh $MODPATH/autopif.sh || exit 1
+sh $MODPATH/autopif2.sh || exit 1
echo -e "\nDone!"
diff --git a/module/autopif.sh b/module/autopif.sh
deleted file mode 100644
index ab3bdd5..0000000
--- a/module/autopif.sh
+++ /dev/null
@@ -1,132 +0,0 @@
-#!/system/bin/sh
-
-if [ "$USER" != "root" -a "$(whoami 2>/dev/null)" != "root" ]; then
- echo "autopif: need root permissions";
- exit 1;
-fi;
-
-case "$1" in
- -h|--help|help) echo "sh autopif.sh [-a]"; exit 0;;
- -a|--advanced|advanced) ARGS="-a";;
-esac;
-
-echo "Xiaomi.eu pif.json extractor script \
- \n by osm0sis @ xda-developers";
-
-case "$0" in
- *.sh) DIR="$0";;
- *) DIR="$(lsof -p $$ 2>/dev/null | grep -o '/.*autopif.sh$')";;
-esac;
-DIR=$(dirname "$(readlink -f "$DIR")");
-
-item() { echo "\n- $@"; }
-die() { echo "\nError: $@!"; exit 1; }
-
-find_busybox() {
- [ -n "$BUSYBOX" ] && return 0;
- local path;
- for path in /data/adb/modules/busybox-ndk/system/*/busybox /data/adb/magisk/busybox /data/adb/ksu/bin/busybox /data/adb/ap/bin/busybox; do
- if [ -f "$path" ]; then
- BUSYBOX="$path";
- return 0;
- fi;
- done;
- return 1;
-}
-
-if ! which wget >/dev/null || grep -q "wget-curl" $(which wget); then
- if ! find_busybox; then
- die "wget not found, install busybox";
- elif $BUSYBOX ping -c1 -s2 android.com 2>&1 | grep -q "bad address"; then
- die "wget broken, install busybox";
- else
- wget() { $BUSYBOX wget "$@"; }
- fi;
-fi;
-
-if [ "$DIR" = /data/adb/modules/playintegrityfix ]; then
- DIR=$DIR/autopif;
- mkdir -p $DIR;
-fi;
-cd "$DIR";
-
-if [ ! -f apktool_2.0.3-dexed.jar ]; then
- item "Downloading Apktool ...";
- wget --no-check-certificate -O apktool_2.0.3-dexed.jar https://github.com/osm0sis/APK-Patcher/raw/master/tools/apktool_2.0.3-dexed.jar 2>&1 || exit 1;
-fi;
-
-item "Finding latest APK from RSS feed ...";
-APKURL=$(wget -q -O - --no-check-certificate https://sourceforge.net/projects/xiaomi-eu-multilang-miui-roms/rss?path=/xiaomi.eu/Xiaomi.eu-app | grep -o '.*' | head -n 2 | tail -n 1 | sed 's;\(.*\);\1;g');
-APKNAME=$(echo $APKURL | sed 's;.*/\(.*\)/download;\1;g');
-echo "$APKNAME";
-
-if [ ! -f $APKNAME ]; then
- item "Downloading $APKNAME ...";
- wget --no-check-certificate -O $APKNAME $APKURL 2>&1 || exit 1;
-fi;
-
-OUT=$(basename $APKNAME .apk);
-if [ ! -d $OUT ]; then
- item "Extracting APK files with Apktool ...";
- DALVIKVM=dalvikvm;
- if echo "$PREFIX" | grep -q "termux"; then
- if [ "$TERMUX_VERSION" ]; then
- if grep -q "apex" $PREFIX/bin/dalvikvm; then
- DALVIKVM=$PREFIX/bin/dalvikvm;
- else
- die 'Outdated Termux packages, run "pkg upgrade" from a user prompt';
- fi;
- else
- die "Play Store Termux not supported, use GitHub/F-Droid Termux";
- fi;
- fi;
- $DALVIKVM -Xnoimage-dex2oat -cp apktool_2.0.3-dexed.jar brut.apktool.Main d -f --no-src -p $OUT -o $OUT $APKNAME || exit 1;
- [ -f $OUT/res/xml/inject_fields.xml ] || die "inject_fields.xml not found";
-fi;
-
-item "Converting inject_fields.xml to pif.json ...";
-(echo '{';
-grep -o '&1 || true;
- fi;
-fi;
diff --git a/module/autopif2.sh b/module/autopif2.sh
new file mode 100644
index 0000000..f403f97
--- /dev/null
+++ b/module/autopif2.sh
@@ -0,0 +1,164 @@
+#!/system/bin/sh
+
+if [ "$USER" != "root" -a "$(whoami 2>/dev/null)" != "root" ]; then
+ echo "autopif2: need root permissions";
+ exit 1;
+fi;
+
+case "$1" in
+ -h|--help|help) echo "sh autopif2.sh [-a]"; exit 0;;
+ -a|--advanced|advanced) ARGS="-a"; shift;;
+esac;
+
+echo "Pixel Beta pif.json generator script \
+ \n by osm0sis @ xda-developers";
+
+case "$0" in
+ *.sh) DIR="$0";;
+ *) DIR="$(lsof -p $$ 2>/dev/null | grep -o '/.*autopif2.sh$')";;
+esac;
+DIR=$(dirname "$(readlink -f "$DIR")");
+
+item() { echo "\n- $@"; }
+die() { echo "\nError: $@, install busybox!"; exit 1; }
+
+find_busybox() {
+ [ -n "$BUSYBOX" ] && return 0;
+ local path;
+ for path in /data/adb/modules/busybox-ndk/system/*/busybox /data/adb/magisk/busybox /data/adb/ksu/bin/busybox /data/adb/ap/bin/busybox; do
+ if [ -f "$path" ]; then
+ BUSYBOX="$path";
+ return 0;
+ fi;
+ done;
+ return 1;
+}
+
+if ! which wget >/dev/null || grep -q "wget-curl" $(which wget); then
+ if ! find_busybox; then
+ die "wget not found";
+ elif $BUSYBOX ping -c1 -s2 android.com 2>&1 | grep -q "bad address"; then
+ die "wget broken";
+ else
+ wget() { $BUSYBOX wget "$@"; }
+ fi;
+fi;
+
+if date -D '%s' -d "$(date '+%s')" 2>&1 | grep -q "bad date"; then
+ if ! find_busybox; then
+ die "date broken";
+ else
+ date() { $BUSYBOX date "$@"; }
+ fi;
+fi;
+
+if [ "$DIR" = /data/adb/modules/playintegrityfix ]; then
+ DIR=$DIR/autopif2;
+ mkdir -p $DIR;
+fi;
+cd "$DIR";
+
+item "Crawling Android Developers for latest Pixel Beta ...";
+wget -q -O PIXEL_GSI_HTML --no-check-certificate https://developer.android.com/topic/generic-system-image/releases 2>&1 || exit 1;
+grep -m1 -o 'li>.*(Beta)' PIXEL_GSI_HTML | cut -d\> -f2;
+
+BETA_REL_DATE="$(date -D '%B %e, %Y' -d "$(grep -m1 -o 'Date:.*' PIXEL_GSI_HTML | cut -d\ -f2-4)" '+%Y-%m-%d')";
+BETA_EXP_DATE="$(date -D '%s' -d "$(($(date -D '%Y-%m-%d' -d "$BETA_REL_DATE" '+%s') + 60 * 60 * 24 * 7 * 6))" '+%Y-%m-%d')";
+echo "Beta Released: $BETA_REL_DATE \
+ \nEstimated Expiry: $BETA_EXP_DATE";
+
+RELEASE="$(grep -m1 'corresponding Google Pixel builds' PIXEL_GSI_HTML | grep -o '/versions/.*' | cut -d\/ -f3)";
+ID="$(grep -m1 -o 'Build:.*' PIXEL_GSI_HTML | cut -d\ -f2)";
+INCREMENTAL="$(grep -m1 -o "$ID-.*-" PIXEL_GSI_HTML | cut -d- -f2)";
+
+wget -q -O PIXEL_GET_HTML --no-check-certificate https://developer.android.com$(grep -m1 'corresponding Google Pixel builds' PIXEL_GSI_HTML | grep -o 'href.*' | cut -d\" -f2) 2>&1 || exit 1;
+wget -q -O PIXEL_BETA_HTML --no-check-certificate https://developer.android.com$(grep -m1 'Factory images for Google Pixel' PIXEL_GET_HTML | grep -o 'href.*' | cut -d\" -f2) 2>&1 || exit 1;
+
+MODEL_LIST="$(grep -A1 'tr id=' PIXEL_BETA_HTML | grep 'td' | sed 's;.*| \(.*\) | ;\1;')";
+PRODUCT_LIST="$(grep -o 'factory/.*_beta' PIXEL_BETA_HTML | cut -d\/ -f2)";
+
+wget -q -O PIXEL_SECBULL_HTML --no-check-certificate https://source.android.com/docs/security/bulletin/pixel 2>&1 || exit 1;
+
+SECURITY_PATCH="$(grep -A15 "$(grep -m1 -o 'Security patch level:.*' PIXEL_GSI_HTML | cut -d\ -f4-)" PIXEL_SECBULL_HTML | grep -m1 -B1 '' | grep 'td' | sed 's;.*\(.*\) | ;\1;')";
+
+case "$1" in
+ -m)
+ DEVICE="$(getprop ro.product.device)";
+ case "$PRODUCT_LIST" in
+ *${DEVICE}_beta*)
+ MODEL="$(getprop ro.product.model)";
+ PRODUCT="${DEVICE}_beta";
+ ;;
+ esac;
+ ;;
+esac;
+item "Selecting Pixel Beta device ...";
+if [ -z "$PRODUCT" ]; then
+ set_random_beta() {
+ local list_count="$(echo "$MODEL_LIST" | wc -l)";
+ local list_rand="$((RANDOM % $list_count + 1))";
+ local IFS=$'\n';
+ set -- $MODEL_LIST;
+ MODEL="$(eval echo \${$list_rand})";
+ set -- $PRODUCT_LIST;
+ PRODUCT="$(eval echo \${$list_rand})";
+ DEVICE="$(echo "$PRODUCT" | sed 's/_beta//')";
+ }
+ set_random_beta;
+fi;
+echo "$MODEL ($PRODUCT)";
+
+item "Dumping values to minimal pif.json ...";
+cat <&1 || true;
+ fi;
+fi;