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 Replies Views [asc] Posted
    Thread: NTLMv2 -- Not finding password
Post: RE: NTLMv2 -- Not finding password

the challenge is likely incorrect. what tool(s) did you use to initiate the challenge and capture the response?
epixoip Old hashcat Support 16 48,579 08-29-2013, 08:15 AM
    Thread: NTLMv2 -- Not finding password
Post: RE: NTLMv2 -- Not finding password

it loads for me if you remove the control character in the middle of the hash
epixoip Old hashcat Support 16 48,579 08-29-2013, 10:12 AM
    Thread: NTLMv2 -- Not finding password
Post: RE: NTLMv2 -- Not finding password

Your problem is you have no clue how to use your tools, and do not know how to read the forum rules.
epixoip Old hashcat Support 16 48,579 09-15-2015, 08:14 AM
    Thread: 2x7970 freeze windows and linux too
Post: RE: 2x7970 freeze windows and linux too

if it's happening on both windows and linux then you know it's not a software or driver issue. if each card works fine individually then you know it's something like your motherboard, bios settings, p...
epixoip General Help 22 46,992 01-31-2013, 12:06 PM
    Thread: 2x7970 freeze windows and linux too
Post: RE: 2x7970 freeze windows and linux too

yes, 1100 is too high. 1000-1050 max on stock voltage.
epixoip General Help 22 46,992 02-01-2013, 12:17 AM
    Thread: Distributed Computing for cracking a long passwd
Post: RE: Distributed Computing for cracking a long pass...

oclhashcat cannot crack passwords > 16 chars.
epixoip Very old oclHashcat-lite Support 22 46,751 07-09-2012, 04:44 AM
    Thread: is anyone run a benchmark with gtx1060 in hashcat v3.0?
Post: RE: is anyone run a benchmark with gtx1060 in hash...

Guys, "2816/11264 MB allocatable" is how much is allocatable for one buffer. We can and do create multiple buffers when necessary to use all available VRAM.
epixoip Hardware 12 46,631 06-29-2017, 06:16 AM
    Thread: oclHashcat v1.36
Post: RE: oclHashcat v1.36

Kgx Pnqvhm Wrote: (04-25-2015, 11:28 PM) -- Is there some problem with the NVIDIA kernel or some other problem? -- Nah, default workload is just too large.
epixoip Old oclHashcat Announcements 12 45,555 04-26-2015, 06:03 AM
    Thread: Bottleneck, and my 31 character limit. Ideas?
Post: RE: Maximum length of 31? Why?

InfDoleo Wrote: (04-05-2015, 10:13 PM) -- odd restriction programming limitation To top it off - closed source - I can't just change the code -- If you don't understand the restriction nor why it...
epixoip Old oclHashcat Support 30 45,031 04-06-2015, 04:38 PM
    Thread: Bottleneck, and my 31 character limit. Ideas?
Post: RE: Formatted/mask permutations?

Let it generate the dictionary stats, go to bed, and when you wake up it will be running or finished running.
epixoip Old oclHashcat Support 30 45,031 04-09-2015, 06:39 AM
    Thread: Bottleneck, and my 31 character limit. Ideas?
Post: RE: Bottleneck, and my 31 character limit. Ideas?

philsmd Wrote: (04-09-2015, 03:59 PM) -- seriously? 3 forum threads for exactly the same problem within just a couple of hours/days this is against following forum rules. This is a warning, next time...
epixoip Old oclHashcat Support 30 45,031 04-10-2015, 12:57 AM
    Thread: How do I crack substr hash?
Post: RE: How do I crack substr hash?

hashcat does not support anything like that. however, there are only 2**32 possible combinations, so there's a 50% chance you'll find a collision after 77k attempts, and a 75% chance after 110k attem...
epixoip Old hashcat Support 22 44,516 01-22-2013, 12:19 PM
    Thread: How do I crack substr hash?
Post: RE: How do I crack substr hash?

no, i mean write your own program or script that will generate a collision. it doesn't have to be very fast or efficient because you are likely to find a collision in only 110,000 guesses when compari...
epixoip Old hashcat Support 22 44,516 01-25-2013, 05:57 PM
    Thread: How do I crack substr hash?
Post: RE: How do I crack substr hash?

here's my stab at creating a program to crack this type of hash. not exceptionally good since it doesn't use sse2 or anything, but it is multithreaded and should be quite a bit faster than the other t...
epixoip Old hashcat Support 22 44,516 01-29-2013, 11:00 PM
    Thread: How do I crack substr hash?
Post: RE: How do I crack substr hash?

no way, this is way too much fun! :) what i want now is for someone to one-up me and post an even faster version.
epixoip Old hashcat Support 22 44,516 01-30-2013, 02:38 AM
    Thread: How do I crack substr hash?
Post: RE: How do I crack substr hash?

Worked on this a little bit more and came up with another version that is ~ 45% faster, still without using SIMD. https://bindshell.nl/pub/md5substr_mt2.c Code: -- epixoip@db:~$ ./md5substr2 aaaaaa...
epixoip Old hashcat Support 22 44,516 02-04-2013, 09:50 AM
    Thread: How do I crack substr hash?
Post: RE: How do I crack substr hash?

All right gents, here's a SIMD-accelerated version that uses SSE2 and, if applicable, XOP. It's ~ 350% faster than the code posted above. https://bindshell.nl/pub/md5substr_simd.c I used an unconvent...
epixoip Old hashcat Support 22 44,516 02-15-2013, 04:03 PM
    Thread: How do I crack substr hash?
Post: RE: How do I crack substr hash?

well, the md5 implementation itself is not specific to cracking substr() hashes. the only part of this program that is specific to cracking the substr() hashes is the hash comparison. so the bulk of t...
epixoip Old hashcat Support 22 44,516 02-16-2013, 02:47 AM
    Thread: How do I crack substr hash?
Post: RE: How do I crack substr hash?

Normally I'd be all like "THREAD NECRO" and ban you for posting on a thread that's almost 3 years old, but since it's kind of my fault that you did so, I can't really get mad. I'm not entirely sure i...
epixoip Old hashcat Support 22 44,516 12-06-2015, 10:42 PM
    Thread: How do I crack substr hash?
Post: RE: How do I crack substr hash?

Ok, I updated the code at the link above to search for strings of any length at any position in an md5 hash. Although I don't really think a 20-char collision will be found with this program, it's rea...
epixoip Old hashcat Support 22 44,516 12-08-2015, 03:11 AM