6g7r

pass + user = combo

Mar 25th, 2021 (edited)
534
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. print("""
  2. ██████╗ ██████╗███████╗██████╗
  3. ██╔════╝ ██╔════╝╚════██║██╔══██╗
  4. ███████╗ ██║ ███╗ ██╔╝██████╔╝
  5. ██╔═══██╗██║ ██║ ██╔╝ ██╔══██╗
  6. ╚██████╔╝╚██████╔╝ ██║ ██║ ██║
  7. ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝
  8.  
  9.  
  10. INSTA ((((6G7R_here))))
  11.  
  12. """)
  13.  
  14.  
  15.  
  16.  
  17. user = open("user.txt","r").read().splitlines()
  18. password = open("pass.txt","r").read().splitlines()
  19. with open("combo.txt", "a") as mix:
  20. for username, password in zip(user, password):
  21. mix.write(f"{username} : {password}\n")
  22. mix.close
  23.  
  24.  
  25. print("done !")
  26. if
Add Comment
Please, Sign In to add comment