You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# login your account via qrcode# dump CookiePersistence.xml
adb shell "run-as com.xx.blbl cp /data/data/com.xx.blbl/shared_prefs/CookiePersistence.xml /sdcard/"
adb pull /sdcard/CookiePersistence.xml
# get the value of SESSDATA from CookiePersistence.xml# decode SESSDATA
java -jar SerializationDumper-v1.14.jar <SESSDATA_VALUE>> SESSDATA.txt
# update the Value and Length of SESSDATA in SESSDATA.txt# note that both plain and hex values need to be updated# 1. get hex of Lengthprintf'%x\n'<NEW_LENGTH_PLAIN_VALUE># 2. get hex of SESSDATAecho -n <NEW_SESSDATA_PLAIN_VALUE>| xxd -p -c 10000
# encode SESSDATA
java -jar SerializationDumper-v1.14.jar -b SESSDATA.txt SESSDATA.bin
# obtain the new SESSDATA, and update CookiePersistence.xml
xxd -p -c 10000 SESSDATA.bin
# inject into BBLL
adb shell am force-stop com.xx.blbl
adb push CookiePersistence.xml /sdcard/
adb shell "run-as com.xx.blbl cp /sdcard/CookiePersistence.xml /data/data/com.xx.blbl/shared_prefs/CookiePersistence.xml"