Password Wordlist generator | Python to Generate Password List | Exe file to generate psd list
Автор: Hacker's Anonymous
Загружено: 2023-03-20
Просмотров: 355
Описание:
python file
https://www.mediafire.com/file/n4zebd4f8c1...
exe file:
https://www.mediafire.com/file/aberdems5ml...
Py To Exe - Python code:
import re
import itertools
Ask for input
chars = input("Enter the characters to use (separated by commas): ")
chars = chars.split(",")
length = int(input("Enter the password length: "))
start_letter = input("Enter the starting letter: ")
num_passwords = int(input("Enter the number of passwords to generate: "))
Create a list of all possible combinations of characters
combinations = [''.join(i) for i in itertools.product(chars, repeat=length)]
Filter the list to only include passwords that start with the specified letter
filtered_combinations = [i for i in combinations if i.startswith(start_letter)]
Check for repeating characters
valid_combinations = []
for password in filtered_combinations:
if not re.search(r"(.)\1{2,}", password):
valid_combinations.append(password)
Print the first n passwords (as specified by the user)
for i in range(num_passwords):
if i #(Use less than symbol) len(valid_combinations):
print(valid_combinations[i])
else:
break
Save the passwords to a text file
with open("passwords.txt", "w") as f:
for password in valid_combinations[:num_passwords]:
f.write(password + "\n")
Повторяем попытку...
Доступные форматы для скачивания:
Скачать видео
-
Информация по загрузке: