I am trying to generate a list of strings (possible passwords) that I can then hash (SHA-256) to compare to an already existing password hashes that I have.
I know that the password must be a popular boys or girls name, with no specified case, followed by a number ranging from 0 to 9999, e.g BoB167, AliCE1000, conNor99, tHe9329
How can I go about generating the possible password strings that the password can be so that I can then hash them to compare with my hashes
Does anyone know where I can start I was thinking to just create a method that takes in all possible characters add every combination to a string but im unsure as to how to do this