hashcat Forum
Is it possible to run Hashcat on XP - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html)
+--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html)
+--- Thread: Is it possible to run Hashcat on XP (/thread-1901.html)

Pages: 1 2 3


RE: Is it possible to run Hashcat on XP - Kuci - 02-09-2013

Well, I think it's worth to release. List of new features and fixes is getting longer:
  • Add WPA/WPA2 support
  • Add NET NTLM support
  • Fix XP crash



RE: Is it possible to run Hashcat on XP - atom - 02-09-2013

WPA/WPA2 support isnt built in yet


RE: Is it possible to run Hashcat on XP - Kuci - 02-09-2013

I know, but it's in TO-DO list, isn't it ?


RE: Is it possible to run Hashcat on XP - atom - 02-13-2013

Yes, it is Smile


RE: Is it possible to run Hashcat on XP - calorifer - 02-28-2013

now, is it possible to run Hashcat on WIN XP?


RE: Is it possible to run Hashcat on XP - oldfart - 02-28-2013

@atom - want to share how ?


RE: Is it possible to run Hashcat on XP - oldfart - 03-03-2013

(02-13-2013, 01:18 PM)atom Wrote: Yes, it is Smile
Sorry - but bump! Sad


RE: Is it possible to run Hashcat on XP - atom - 03-03-2013

I am adding WPA/WPA2 and once its done I will release new version


RE: Is it possible to run Hashcat on XP - calorifer - 03-03-2013

God bless you!


RE: Is it possible to run Hashcat on XP - oldfart - 03-04-2013

(03-03-2013, 08:22 AM)atom Wrote: I am adding WPA/WPA2 and once its done I will release new version

Thanks for that - I'll just write some C++ while I'm waiting! Wink

Code:
    //See RFC 1321 for details on how MD5Init, MD5Update, and MD5Final
    //calculate a digest for the plain text
    MD5Init( &context );

    //the alternative to these ugly casts is to go into the RFC code and change the declarations
    MD5Update( &context, pszBuffer, nLength );
    MD5Final( digest, &context);

    //make a string version of the numeric digest value

    for ( i = 0; i < 16; i++)
    {
        pszMD5[ p++ ]    = NybbleToHex( (digest[i] >> 4) & 0xf);
        pszMD5[ p++ ]    = NybbleToHex( digest[i] & 0xf);
    }