Hey do any 1 know how can i convert password to characters i forgot the admin password of 1 of my script its password in sql is in such form 2db9383f7c59864b4dc156bb65613e38 how can i convert it to word or characters used??? Thanks
It depends on what encryption has been used. I'm guessing it is the MD5 encryption algorithm. MD5 encryption is a one way encryption meaning you cannot de-crypt a MD5 hash. Sorry :-(
It's probarly encrypted (perhaps using a salt). The script should have a lost password option I bet, check it out.
If its a direct md5, you can change the value using the md5 function. If you look at the script you can probably find how the encryption is done