Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2022
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. import os,sys,requests,json
  2.  
  3. banner = """
  4. \033[1;35;40m
  5.  
  6. ██▓▒███████▒ ▄▄▄ ███▄ █ ▄▄▄ ███▄ ▄███▓ ██▓
  7. ▓██▒▒ ▒ ▒ ▄▀░▒████▄ ██ ▀█ █ ▒████▄ ▓██▒▀█▀ ██▒▓██▒
  8. ▒██▒░ ▒ ▄▀▒░ ▒██ ▀█▄ ▓██ ▀█ ██▒▒██ ▀█▄ ▓██ ▓██░▒██▒
  9. ░██░ ▄▀▒ ░░██▄▄▄▄██ ▓██▒ ▐▌██▒░██▄▄▄▄██ ▒██ ▒██ ░██░
  10. ░██░▒███████▒ ▓█ ▓██▒▒██░ ▓██░ ▓█ ▓██▒▒██▒ ░██▒░██░
  11. ░▓ ░▒▒ ▓░▒░▒ ▒▒ ▓▒█░░ ▒░ ▒ ▒ ▒▒ ▓▒█░░ ▒░ ░ ░░▓
  12. ▒ ░░░▒ ▒ ░ ▒ ▒ ▒▒ ░░ ░░ ░ ▒░ ▒ ▒▒ ░░ ░ ░ ▒ ░
  13. ▒ ░░ ░ ░ ░ ░ ░ ▒ ░ ░ ░ ░ ▒ ░ ░ ▒ ░
  14. ░ ░ ░ ░ ░ ░ ░ ░ ░ ░
  15. \033[0;37;40m
  16. \033[1;32;40m
  17. Tool Information :
  18. - Tool Name : Izanami Email Validator
  19. - Creator : Soul Kings
  20. - Telegram : @soul_kings
  21. - Version : 1.0 [FREE]
  22.  
  23. Join our telegram channel : @raid_store
  24. \033[0;37;40m
  25. """
  26. api = "https://soulapizy.000webhostapp.com/emailvalidator/"
  27.  
  28. #Main
  29. print(banner)
  30.  
  31. #Open Number List
  32. filename = input("Input Email List (Exemple: list.txt) : ")
  33. try:
  34. file = open(filename,"r")
  35. except:
  36. sys.exit("[!] Error. No File Exist")
  37. combo = file.readlines()
  38. file.close()
  39.  
  40. for line in combo:
  41. line = line.strip()
  42. data = {"email": line}
  43. try:
  44. response = requests.post(api, data=data).text
  45. except:
  46. print("[!] Stopped.")
  47. combo.append(line)
  48. break
  49. if "Success" in response:
  50. print('\r[\033[92m ' + response + ' \033[0m] ')
  51. open('hits.txt','a').write(str(line)+'\n')
  52. open('full-hits.txt','a').write(str('[ ' + response + ' ]')+'\n')
  53. elif "Bad" in response:
  54. print('\r[\033[91mBad\033[0m] ' + line)
  55. else:
  56. print('\r[\033[91mBan\033[0m] ' + line)
  57.  
  58. print("Done....")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement