We should automatically import a large list of users with some data into the running system. For the initial password, I want to update the list (csv format at the moment) using an arbitrary alphanumeric key (8 digits).
When you paste it using a special program (which requires a csv file), the password (in this case an alphanumeric key) is saved as an md5 hash tag.
i.e. I generate a random alphanumeric key:
H2A5D39A -> MD5: 1642fccf791f15d137cf31282af79752
Thus, I want to create a list in which authenticated users can ask me for the initial password (alphanumeric key).
Do you have a better idea for a "secret" initial password?
How to create an alphanumeric key in Perl?
PS: the "running system", not programmed by us, simply allows alphanumeric passwords (no special characters, ...)
source
share