expose more ports

This commit is contained in:
2026-03-24 16:13:57 -07:00
parent 2b7d14eb5b
commit ec2fd3ac06
2 changed files with 3 additions and 4 deletions

View File

@ -15,8 +15,6 @@ import json, time, hashlib
words = []
simple_words = []
HASH_DIR = Path("/opt/pwdgen")
HASH_FILE = HASH_DIR / "hash_record.txt"
password_hashes =set()
SPECIAL_SET = "!@#$%^&*(),.<>?~`;:|][}{=-+_"
WORDS_FILE = "dict.yaml"
@ -29,6 +27,7 @@ password_types = [
#################################################
# Hash Record Functions
#################################################
HASH_FILE = Path("/opt/pwdgen/hash_record.txt")
# Create the file if it doesnt exist
if not HASH_FILE.exists():
HASH_FILE.touch(exist_ok=True)