java - Identify the hash mehtods (md5, sha1) given only hashed string -


i asked setup application on this repository, works mysql , jsp, , run selenium test against functionalities. file bank.sql schema of database.

but, believe application broken because, not provided credential log system. query such as:

insert `users` (`username`, `password`, `enabled`) values ('jake', 'e2a79383c1347633461eb9fb56cf4972a0155919', 1), ('maria', '3e182b1ea9376483a38614d916a0b666ef531b6d', 1), ('mike', 'd6ac022931a66a2bcc244db91818ebec76ce5e18', 1), ('sara', '5d569dfc13001c8b30aa11eeb2a59d22071f3d80', 1), ('tom', '26d58cf3df0903a2298788b72fced5bca9ea7144', 1); 

shows username, , hash passwords of users. but, not me obtain passwords, because seems passwords kept in hash format.

i going reset these passwords new passwords, hashing function not clear. instance, hashed passwords obtained either md5, or sha1. therefore, replacement not work.

my opinion code not enough selenium test, since don't have credential. know opinion too


Comments

Popular posts from this blog

c++ - CPP, 'X' button listener -

.net - Bulk insert via Dapper is slower than inserting rows one-by-one -

shared memory - gstreamer shmsrc and shmsink with h264 data -