We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bd16d3 commit 451afc5Copy full SHA for 451afc5
1 file changed
wsuks/wsuks.py
@@ -32,7 +32,7 @@ def __init__(self, args):
32
self.logger.error(f"Interface '{args.interface}' not found! Exiting...")
33
exit(1)
34
self.local_username = "user" + "".join(random.choice(digits) for i in range(5))
35
- self.local_password = "".join(random.sample(ascii_letters, 12)) + "1!"
+ self.local_password = "".join(random.sample(ascii_letters + digits, 12)) + "1!"
36
37
# Set args
38
self.targetIp = args.targetIp # Never None (required)
0 commit comments