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