简体   繁体   中英

How do I decrypt the following hash from a sqlmap output?

These are outputs for data in column Password from a table.

09630c2f8c3eb76a0c9e4f937bccae58
033b06ca049426c24789e2cb5c53a25d

How do I decrypt this given that I've ran it through different hash decrypting programs and keep getting an error? What kind of hash is this? (MD5, etc...)?

I've used python /usr/bin/findmyhash and different online hash decrypting sites. I tried hashcat but totally unfamiliar with it and would need to study it.

qlmap -u https://fake-site informationschema fakesite -T tq_user -C password --dump

hashes can't be decrypted first. It's one-way crypting. And this is NOT a MD5, so long, maybe sha256.

The answer is

09630c2f8c3eb76a0c9e4f937bccae58 = yr%Qj1n5w6G

Those are two strings of hex digits, 32 characters in length. That's the length of an MD5 hash, so it might be the result of MD5. Using MD5 is not recommended for password hashing, but some people have used it in the past.

But I agree with the answer from @Capibar -- hashes are one-way, not reversible.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM