6g7r

check, make

Dec 12th, 2021 (edited)
455
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.48 KB | None | 0 0
  1. import requests,time,colorama,os,random
  2. from colorama import *
  3. clear = lambda: os.system('cls')
  4. clear()
  5. NA ='6G7R Here'
  6. text = requests.get(f'http://artii.herokuapp.com/make?text={NA}').text
  7. print(colorama.Fore.RED,text)
  8. print(f"""
  9. My Insta --> @6g7r_here2
  10. {Fore.RED}1 - User , Password check
  11. {Fore.CYAN}2 - combo making
  12.  
  13. """)
  14. O = input(f'{Fore.LIGHTGREEN_EX}1 , 2  : ')
  15. if('1')in O:
  16.     clear()
  17.     NA = 'Password Check'
  18.     text = requests.get(f'http://artii.herokuapp.com/make?text={NA}').text
  19.     print(colorama.Fore.YELLOW, text)
  20.     c = open('!.txt', 'r').read().splitlines()
  21.     while 1:
  22.  
  23.         password1 = input('password ? :')
  24.         if (password1) in c:
  25.             print(Fore.RED, 'The user ,  password is leaked!')
  26.         else:
  27.  
  28.             print(Fore.LIGHTGREEN_EX, 'user , Password not leaked')
  29. if('2')in O:
  30.     clear()
  31.     NA = 'combo making'
  32.     text = requests.get(f'http://artii.herokuapp.com/make?text={NA}').text
  33.     print(colorama.Fore.LIGHTGREEN_EX, text)
  34.     c = open('!.txt', 'r').read().splitlines()
  35.     a = input(f'{Fore.RED}Start ? :')
  36.     d = 0
  37.     for ui in range(99999999):
  38.         for meow in c:
  39.             split = meow.split(':')
  40.             user = split[0]
  41.             password = split[1]
  42.             random.choice(c)
  43.             with open("Hack combo1.txt", "a") as mix:
  44.                 mix.write(f"{user}:{password}\n")
  45.                 mix.close()
  46.             d +=1
  47.             print(Fore.YELLOW,f'\r Done combo --> {d}',end='')
  48.  
  49.  
  50.  
Add Comment
Please, Sign In to add comment