Hi, I need to decrypt md5 hash. How can i do that? sites like md5decrypter gives text that matches the hash. What is the technique used by them? I've read it is encrypted hash with salt, so when we combine these two and if matches found we get the clear text. but i'm not familiar with salt&encrypted hash and all... any body can give me an idea? Thanks.
It's not an encryption function, it's a hashing function. With some luck it can be decrypted (if you find collisions, use vulnerabilities or if you used a weak salt), but generally it needs a brute-force attack. Try some 'decrypter' (it's actually called reversing) like above, if it doesn't work you probably are out of luck.