Password generation - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Password generation (/thread-11813.html) |
Password generation - matthewmda - 02-07-2024 I want to create a list of password (and save it to file) that start with let's say word "password" and then get from 1 to 4 positions both numbers and special characters, so (examples): password1 password3 password12 password#1^4 password123 password1234 password$@# generally all possible combinations of numbers and special chars (from 1 up to 4 characters after the word "password") I can't find the right command to get this done :/// I would highly appreciate the help. Thank you in advance! RE: Password generation - b8vr - 02-08-2024 (02-07-2024, 08:37 PM)matthewmda Wrote: I want to create a list of password (and save it to file) that start with let's say word "password" and then get from 1 to 4 positions both numbers and special characters, so (examples): Hashcat -a3 -1 ?d?s password?1?1?1?1 -i --increment-min=9 --stdout > password-file.txt |