Hashes from clear passwords
#5
do you want to build some kind of rainbowtable?

a script solution ala python/bash may seem slow, but you just need to run its once per inputfile so it seems a legit way to get your desired lists, you can store the result in different ways

or do you want a inmemory solution, generating all hashes on the fly?

i did a fast test with python and sha256:

generating 1.000.000 hashes in 1.84 seconds, so ~ 500.000 per second, i think this is fast enough for any inputfile

the only limiting factor is RAM (when you want to work inram, or storage io and storage) the main problem will be writing to disk or storing that amount of data (there is a reason rainbowtables are considered obsolete)

i think pythons hashlib will cover most used hashformats for your case, so i would stick with a python script
Reply


Messages In This Thread
Hashes from clear passwords - by wallacebw - 03-11-2024, 09:39 PM
RE: Hashes from clear passwords - by DanielG - 03-12-2024, 09:58 AM
RE: Hashes from clear passwords - by wallacebw - 03-12-2024, 03:21 PM
RE: Hashes from clear passwords - by Snoopy - 03-12-2024, 05:44 PM
RE: Hashes from clear passwords - by DanielG - 03-12-2024, 05:10 PM
RE: Hashes from clear passwords - by wallacebw - 03-12-2024, 08:38 PM
RE: Hashes from clear passwords - by wallacebw - 03-19-2024, 01:41 AM
RE: Hashes from clear passwords - by cyclone - 05-23-2024, 05:51 PM
RE: Hashes from clear passwords - by wallacebw - 05-23-2024, 08:09 PM
RE: Hashes from clear passwords - by cyclone - 05-27-2024, 07:58 PM