Skip to content

NaInSec/PyWordlist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wordlist Generator With Python.

import random
import string

def generate_random_char(length, char_set):
    return ''.join(random.choice(char_set) for _ in range(length))

output_file = input("Input Name Output File : ")

wordlist_length = 8
char_set = string.ascii_letters + string.digits + '@$#%&!?{}'

with open(output_file, 'w') as file:
    for _ in range(500):
        password = generate_random_char(wordlist_length, char_set)
        file.write(password + '\n')

print("Wordlist", output_file, "Success...")

  • Code By XSVSCyb3r

About

Python Wordlist.

Topics

Resources

License

Stars

Watchers

Forks