перебор_паролей.py 627 B

1234567891011121314151617
  1. stud_password = "A4w_" # - 4 сек
  2. stud_password = "A4w_M3t"
  3. from tqdm import tqdm
  4. alhabet = "qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM1234567890!@#$%^&*()_+[]|/?.>,<"
  5. for s1 in tqdm(alhabet):
  6. for s2 in alhabet:
  7. for s3 in alhabet:
  8. for s4 in alhabet:
  9. for s5 in alhabet:
  10. for s6 in alhabet:
  11. for s7 in alhabet:
  12. new_password = s1 + s2 + s3 + s4 + s5 + s6 + s7
  13. if new_password == stud_password:
  14. print("Пароль найден: ", new_password)