ibm security directory server hash
#10
Well, you have the hash string "MWw4MjlrM2loajFz:qu0VLHJPa2dNL6+7bRIpcRGcdInpFO6B5OGMgnyEeyM=", we assume the first part is the salt and the second part is the hash. Just convert it from base64 encoding to hex encoding:

Code:
epixoip@token:~$ echo MWw4MjlrM2loajFz | base64 -d | xxd -p
316c3832396b3369686a3173

epixoip@token:~$ echo qu0VLHJPa2dNL6+7bRIpcRGcdInpFO6B5OGMgnyEeyM= | base64 -d | xxd -p
aaed152c724f6b674d2fafbb6d122971119c7489e914ee81e4e18c827c847b23

Then combine them in hash : salt format and run with --hex-salt.

Code:
./oclHashcat64.bin -m 1410 --hex-salt aaed152c724f6b674d2fafbb6d122971119c7489e914ee81e4e18c827c847b23:316c3832396b3369686a3173 -a 3 CieloAzzurro.1


Messages In This Thread
ibm security directory server hash - by raist2 - 08-26-2015, 06:47 PM
RE: ibm security directory server hash - by atom - 08-27-2015, 09:25 AM
RE: ibm security directory server hash - by dikiy - 08-27-2015, 09:56 AM
RE: ibm security directory server hash - by dikiy - 08-28-2015, 06:05 AM
RE: ibm security directory server hash - by atom - 08-28-2015, 01:50 PM
RE: ibm security directory server hash - by epixoip - 08-29-2015, 12:44 AM