Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.

Search Results
Post Author Forum [desc] Replies Views Posted
    Thread: Finding all the collisions for a given hash
Post: Finding all the collisions for a given hash

I'm brute forcing crc32 check sums and they have many collisions. For e.g. following strings have the same crc32. [.ERM*] [B6In] [^y#Hz] [cho "] So, is there a way that I can get all the colli...
jj hashcat 9 12,016 09-11-2016, 03:11 AM
    Thread: Finding all the collisions for a given hash
Post: RE: Finding all the collisions for a given hash

royce Wrote: (09-11-2016, 06:43 AM) -- I don't know of a way to do this with hashcat today. But the "jumbo" edition of John the Ripper has a "hidden" option (--keep-guessing) that will do this. F...
jj hashcat 9 12,016 09-11-2016, 10:47 AM
    Thread: Finding all the collisions for a given hash
Post: RE: Finding all the collisions for a given hash

I made a python script to do the work. Code: -- import re import subprocess import math import os with open('hashes.txt','r') as f:    hashes=f.readlines()    hashes=list(map(str.str...
jj hashcat 9 12,016 09-11-2016, 01:29 PM
    Thread: Finding all the collisions for a given hash
Post: RE: Finding all the collisions for a given hash

royce Wrote: (09-11-2016, 04:39 PM) -- Ah, you're using the offset - nice! -- Yep, the script worked. I was able to get all the collisions. It uses the -s option. I'm calculating the offset by mult...
jj hashcat 9 12,016 09-11-2016, 05:05 PM
    Thread: Finding all the collisions for a given hash
Post: RE: Finding all the collisions for a given hash

atom Wrote: (09-12-2016, 12:22 AM) -- You can do what --keep-guessing is doing by adding OPTS_TYPE_PT_NEVERCRACK to the hashconfig->opts_type for mode 11500 in src/interface.c -- Adding an option w...
jj hashcat 9 12,016 09-12-2016, 03:31 AM