Skip to content

Instantly share code, notes, and snippets.

@liamcottle
Created April 3, 2023 08:25
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save liamcottle/7c808830830af256976b0f1d3dc98a25 to your computer and use it in GitHub Desktop.
Save liamcottle/7c808830830af256976b0f1d3dc98a25 to your computer and use it in GitHub Desktop.
Mod StorySave
# 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
@erwinsatriani
Copy link

where i can find download storysave with bypass checkpoint?

@pauljazzy1
Copy link

Can you edit this for us bro please we need that brilliant app of yours

@wldsss
Copy link

wldsss commented Jul 13, 2023

Please post the apk

@andreslsanchez
Copy link

Thank you! it worked!

@wldsss
Copy link

wldsss commented Jul 31, 2023

Can you provide us with the apk sir , andreslsanchez

@andreslsanchez
Copy link

Problem is that webpage sign off my account

@wldsss
Copy link

wldsss commented Aug 1, 2023

Well that is disappointing 😕 , thx anyway

@wldsss
Copy link

wldsss commented Aug 1, 2023

I've been using this app for many years even backed the programmer and got the non ads version 😞

@fixon95
Copy link

fixon95 commented Nov 13, 2023

Please Liam we need this app back 😭🙏

@rays112
Copy link

rays112 commented Feb 6, 2024

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:

  1. 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.
  2. 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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment