Posts: 1
Threads: 1
Joined: Dec 2011
12-13-2011, 11:18 PM
(This post was last modified: 12-13-2011, 11:29 PM by atom.)
Sorry to bother you but i was a Cain user so i am not familiar with the format used.
I tried the inputformat hash(mixcase)
![Confused Confused](https://hashcat.net/forum/images/smilies/confused.gif)
alt but get the line exception errors...
myhash file looks like:
4XXX4XX9CCXXXX3XBXX12XXCCXXFXXC47XXX8XXB:XX44XX0X
Does somebody know what i miss. I can't find it on the web...
Thanx
Marcel
Posts: 5,185
Threads: 230
Joined: Apr 2010
try this way:
0x0100$salt$hash
0x0100XX44XX0X4XXX4XX9CCXXXX3XBXX12XXCCXXFXXC47XXX8XXB
Posts: 67
Threads: 12
Joined: Sep 2011
On the SQL Servers you are authorized to audit:
SELECT sys.syslogins.name
, sys.server_principals.type
, LOGINPROPERTY(sys.syslogins.name,'PasswordHash') AS HashcatFormat
, UPPER(RIGHT(sys.fn_varbintohexstr(CAST(RIGHT(sys.syslogins.password,10) AS VARBINARY(256))),40)) + ':' + UPPER(RIGHT(sys.fn_varbintohexstr(CAST(LEFT(RIGHT(sys.syslogins.password,12),2) AS VARBINARY(32))),8)) AS OCLHashCatLiteFormat
FROM sys.syslogins
LEFT OUTER JOIN sys.server_principals
ON sys.server_principals.sid = sys.syslogins.sid