11-23-2011, 03:17 AM
this goes back to the geocaching thread that's been closed but i still had a question left unanswered. atom said there were a few ways to crack the salted hash but when i tried it using the hashalt format it didn't work. here are the examples:
using sha1($pass.$salt) fails to return plain text
atom's way using the salt as part of the mask itself and it works
shouldn't it work in either case?
using sha1($pass.$salt) fails to return plain text
Code:
oclHashcat-lite64.exe -m 101 8882caa3b88a5a16fad6287e26d8a8f9454ad643:PEPPER "N51 03.?d?d?d W114 07.?d?d?d"
oclHashcat-lite v0.6 by atom starting...
Device #1: Cypress, 1024MB, 0Mhz, 20MCU
Device #2: Cypress, 1024MB, 0Mhz, 20MCU
Status.......: Exhausted
Hash.Type....: sha1($pass.$salt)
atom's way using the salt as part of the mask itself and it works
Code:
oclHashcat-lite64.exe -m 100 8882caa3b88a5a16fad6287e26d8a8f9454ad643 "PEPPERN51 03.?d?d?d W114 07.?d?d?d"
oclHashcat-lite v0.6 by atom starting...
Device #1: Cypress, 1024MB, 0Mhz, 20MCU
Device #2: Cypress, 1024MB, 0Mhz, 20MCU
Status.......: Cracked
Hash.Type....: SHA1
shouldn't it work in either case?