HC and Blowfish Advanced CS Help
#2
What exactly do you need help with? If it's interpreting the algorithm description, if I'm reading the description correctly, in pseudocode, what they're describing looks something like this:

b1 = SHA1(password)
b2 = SHA1(password + b1)
b3 = SHA1(password + b2)

xor_source = last_four_bytes_of(b3)

key = first_56_bytes_of(b1 + b2 + b3)

first_four_bytes_of(key) = first_four_bytes_of(key) XOR xor_chunk

Since the source is (presumably) up on SourceForge, though, you could skip their textual description and just Use The Source, Luke (possibly with the help of a debugger).

If you're wanting help actually running that algorithm in Hashcat, you'll absolutely 100% need to write a module. There's nothing at the moment that implements the algorithm you've described (unless someone's snuck in a new module in the last few weeks). As a base, 18600 would probably work best, as it's using SHA-1 and Blowfish (though in a different construction), and of course the comparison kernel would presumably need to be somewhat different.
Reply


Messages In This Thread
HC and Blowfish Advanced CS Help - by Romeo3442 - 05-07-2020, 06:07 PM
RE: HC and Blowfish Advanced CS Help - by womble - 05-08-2020, 03:43 AM
RE: HC and Blowfish Advanced CS Help - by philsmd - 05-10-2020, 07:34 AM
RE: HC and Blowfish Advanced CS Help - by womble - 05-10-2020, 03:45 PM
RE: HC and Blowfish Advanced CS Help - by womble - 05-15-2020, 05:27 AM
RE: HC and Blowfish Advanced CS Help - by 0x4n6 - 05-15-2020, 07:05 AM
RE: HC and Blowfish Advanced CS Help - by womble - 05-15-2020, 07:46 AM
RE: HC and Blowfish Advanced CS Help - by philsmd - 05-15-2020, 08:39 AM
RE: HC and Blowfish Advanced CS Help - by womble - 05-15-2020, 11:38 AM
RE: HC and Blowfish Advanced CS Help - by philsmd - 05-15-2020, 12:59 PM
RE: HC and Blowfish Advanced CS Help - by 0x4n6 - 05-15-2020, 04:13 PM
RE: HC and Blowfish Advanced CS Help - by womble - 05-16-2020, 03:55 AM
RE: HC and Blowfish Advanced CS Help - by 0x4n6 - 05-19-2020, 08:20 AM
RE: HC and Blowfish Advanced CS Help - by womble - 05-19-2020, 04:07 PM
RE: HC and Blowfish Advanced CS Help - by 0x4n6 - 05-19-2020, 08:29 PM
RE: HC and Blowfish Advanced CS Help - by NoolanJ - 08-19-2022, 11:02 PM
RE: HC and Blowfish Advanced CS Help - by womble - 02-20-2024, 02:06 AM