php - How to decode password save with md5() in mysql db -
this question has answer here:
- encrypt , decrypt md5 5 answers
i have simple query .
i fetching user name , password mysql db using php.
the password in md5() encoded. can 1 me out
script
while($rfg=mysql_fetch_array($rc)){ //print_r($rfg); echo $_post['im_password'] = $rfg['password']; echo $_post['im_user'] = $rfg['nombre']; }
how can decode md5 password real text in php ??
thanks in advance
the point of using md5 cant decrypt easely. example use compare md5(user_input) hash in database (login system).
if need plain-text (which dont support) try using dictionary-attacks. beside (bruteforcing) wouldnt worth according needed calculation power.
Comments
Post a Comment