Created
April 3, 2023 08:25
-
-
Save liamcottle/7c808830830af256976b0f1d3dc98a25 to your computer and use it in GitHub Desktop.
Mod StorySave
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 script mods StorySave to bypass checkpoint_required/challenge_required in 2023 | |
# exit when any command fails | |
set -e | |
# make sure StorySave.apk exists | |
if [ ! -f "StorySave.apk" ]; then | |
echo "StorySave.apk does not exist." | |
echo "Download latest StorySave apk from APK Mirror and then rename it to StorySave.apk" | |
echo "https://www.apkmirror.com/apk/liam-cottle/storysave/storysave-1-26-2-release/storysave-1-26-2-android-apk-download/" | |
exit -1 | |
fi | |
# decompile apk | |
apktool d StorySave.apk | |
# change ig version from 52.0.0.0.35 to 92.0.0.15.114 | |
sed -e 's/52.0.0.0.35/92.0.0.15.114/g' -i.bak ./StorySave/smali/sn.smali | |
# build new apk | |
apktool b StorySave | |
# create keystore for signing apk (if not exists) | |
if [ ! -f "StorySaveMod.keystore" ]; then | |
keytool -genkey -noprompt \ | |
-alias StorySaveMod \ | |
-dname "CN=StorySaveMod, OU=StorySaveMod, O=StorySaveMod, L=StorySaveMod, S=StorySaveMod, C=US" \ | |
-keystore StorySaveMod.keystore \ | |
-validity 100000 \ | |
-storepass password \ | |
-keypass password \ | |
-keyalg rsa | |
fi | |
# sign apk | |
jarsigner -keystore StorySaveMod.keystore \ | |
-storepass "password" \ | |
-keypass "password" \ | |
-verbose \ | |
StorySave/dist/StorySave.apk StorySaveMod | |
# uninstall existing app from device | |
adb uninstall io.storysave.android | |
# install modded apk | |
adb install -r StorySave/dist/StorySave.apk |
Thank you! it worked!
Can you provide us with the apk sir , andreslsanchez
Problem is that webpage sign off my account
Well that is disappointing 😕 , thx anyway
I've been using this app for many years even backed the programmer and got the non ads version 😞
Please Liam we need this app back 😭🙏
Thank you very much for the mod. I've been using it since last year and it does indeed still work.
Two things to consider though:
- If your account has F2A activated, you mostly won't get a verification code to be able to log in. Therefore I had to turn F2A off on my account.
- As somebody mentioned, after a short time using your account on storysave, you will be automatically logged out, and sometimes there will even be a security challenge you have to pass, either on the web version of IG or on the official app, to be able to still use SSave. My account also got temporarily locked once, because of too much "suspicious activity", and I had to wait a few days and send a photo review through support to get it reactivated. I wish there'd be a way to mask SSave so that it won't trigger the security warnings.
we don't need to disable 2FA in order to login, just setup Google Authenticator as a method and use those codes instead, when it asks for OTP sent on your number.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please post the apk