Skip to content

Instantly share code, notes, and snippets.

@mrhalix
Created October 31, 2021 20:56
Show Gist options
  • Save mrhalix/112f4a301c0214d2527cc73e56ebf821 to your computer and use it in GitHub Desktop.
Save mrhalix/112f4a301c0214d2527cc73e56ebf821 to your computer and use it in GitHub Desktop.
one-click Download and Sideload any app no matter if you purchased it from nassaab.com !! :)
"""
Steps to use this script:
1. Jailbreak your iOS device
2. Install a proper terminal on your device
3. Install Python3 on your device
4. Change email addresses in this code to the email that has the app purchased. for example admin's email of the whole system :))
5. Run the code
6. Fill the information you're asked for
7. Click on install button
8. Wait for Installation process to finish
9. Enjoy!
"""
import requests, json
from subprocess import call
def leechAPPS():
"""
To Get APP List
: nothing
"""
response = requests.get("https://handle.ahmadhashemi.com/nassaab/special/list.php?v=2.34.1&email=EMAILADDRESS")
return json.loads(response.text)
def leechAPPLink(appid):
"""
To Get an APP Link
str : appid - app id leeched from above def
"""
response = requests.get("https://handle.ahmadhashemi.com/nassaab/special/install.php?email=EMAILADDRESS&id=" + appid + "&userId=1")
return response.text
query = input("Enter query to search: ")
apps = leechAPPS()
num = 1
finallist = []
for i in apps:
if query in i['title'].lower():
print("---- [{}] ----".format(num))
print("Title: " + i['title'])
print("BundleID: " + i['bundle'])
finallist.append(i['id'])
num+=1
qnum = input("Gimme number: ")
appid = finallist[int(qnum) - 1]
call(["uiopen", leechAPPLink(appid)])
print("HELLYEAH\n\nClick install when the box appears!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment