Advertisement
6g7r

Ch FaceBook

Mar 10th, 2022
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.38 KB | None | 0 0
  1. import requests,threading,random,re
  2. from threading import Thread
  3.  
  4.  
  5.  
  6. print("""
  7. [?] By 6g7r
  8. [?] insta 6g7r_here2
  9. [?] PW Team
  10. [?] Discord > https://discord.gg/tAd6MbQMfV
  11.  
  12. """)
  13. ff =input("file_uesr: ")
  14. th=int(input('thread:'))
  15. attempt=0
  16. un=0
  17. av=0
  18. try:
  19.   file=open(ff).read().splitlines()
  20.  
  21. except :
  22.   print("Make sure you type the file name correctly and add .txt")
  23.   input("Enter for Exit")
  24.  
  25.  
  26.  
  27. def Ch_Face():
  28.  
  29.   global attempt,un,av,file
  30.  
  31.  
  32.   for file in file:
  33.    
  34.    
  35.     users = str(random.choice(file))
  36.  
  37.    
  38.    
  39.     req=requests.get(f"https://khafeer.ml/api/facebook/email.php?email={file}").text
  40.  
  41.     if 'UnAvailable'in req:
  42.       un+=1
  43.       attempt +=1
  44.       with open("UnAvailable.txt", "a") as mix:
  45.        
  46.          
  47.         mix.write(f"{users}\n")
  48.         mix.close()
  49.       print(f"""\r
  50.      
  51. attempt ({attempt})
  52.  
  53. UnAvailable ( {un} )
  54.  
  55. Available ( {av})
  56.  
  57.  
  58. """,end="")
  59.    
  60.      
  61.     if 'Available' in req:
  62.      
  63.       attempt +=1
  64.       av+=1
  65.       print(f"""\r
  66.  
  67.      
  68. attempt ({attempt})
  69.  
  70. UnAvailable ( {un} )
  71.  
  72. Available ( {av})
  73.  
  74.  
  75. """,end="")
  76.       with open("Available.txt", "a") as mix:
  77.         mix.write(f"{users}\n")
  78.         mix.close()
  79.  
  80.      
  81.  
  82.      
  83. Threads = []
  84. for t in range(th):
  85.     x = threading.Thread(target=Ch_Face)
  86.     x.start()
  87.     Threads.append(x)
  88.  
  89. for Th in Threads:
  90.     Th.join()
  91.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement