Skip to content

Commit 1bd16d3

Browse files
committed
Lower password length to 12 chars to fix possible incompatability with pre2k computers
1 parent 0796ee2 commit 1bd16d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wsuks/wsuks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def __init__(self, args):
3232
self.logger.error(f"Interface '{args.interface}' not found! Exiting...")
3333
exit(1)
3434
self.local_username = "user" + "".join(random.choice(digits) for i in range(5))
35-
self.local_password = "".join(random.sample(ascii_letters, 14)) + "1" + "!"
35+
self.local_password = "".join(random.sample(ascii_letters, 12)) + "1!"
3636

3737
# Set args
3838
self.targetIp = args.targetIp # Never None (required)

0 commit comments

Comments
 (0)