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 Posted [desc]
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

M@lik you are a star !!! :D I don't know where you found that but I have been reading up on regular expressions and I couldn't find it. Well done and thanks ! I am going to experiment with it n...
Hash-IT Very old oclHashcat-plus Support 125 250,821 05-27-2012, 04:41 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Wow thank you so much M@lik I must admit to not understanding why the code has changed from.. /\([A-Z]\)\1 to /\(.\)\1/d Other than it perhaps means any character and not just upper alp...
Hash-IT Very old oclHashcat-plus Support 125 250,821 05-27-2012, 06:05 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

OK, thanks to M@lik and Pixel for their help. Here is the code if you want to create your own modified brute force (8 Upper Alpha). The first batch limits characters to 1 consecutively and no mo...
Hash-IT Very old oclHashcat-plus Support 125 250,821 05-27-2012, 10:03 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Pixel Wrote: (05-27-2012, 10:47 PM) -- Yes, I'll help generate. Which do you want me to do? Edit: I tried the first command "/\(.\)\1/d;/\(.\).*\1.*\1/d" as it seems the most relaxed of the tw...
Hash-IT Very old oclHashcat-plus Support 125 250,821 05-28-2012, 12:02 AM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Wow, you guys are making some progress ! :D Well, I am sorry to report I am getting nowhere with this. I used the code I set out in my last post and left my computer running last night only to ret...
Hash-IT Very old oclHashcat-plus Support 125 250,821 05-28-2012, 12:43 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

@Pixel Thanks for the code !!! I realise what I had done wrong now, I was filtering way to hard. I also had never tried starting with anything other than A so obviously there was a lot to delet...
Hash-IT Very old oclHashcat-plus Support 125 250,821 05-28-2012, 02:29 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Pixel Wrote: (05-28-2012, 03:19 PM) -- This sound good to me, I just hope we don't find a password with more than 2 consecutive characters together or per line. -- Ha ha, just my sort of luck that ...
Hash-IT Very old oclHashcat-plus Support 125 250,821 05-28-2012, 03:30 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Great work there M@lik ! Its looking good. :D M@LIK Wrote: (05-28-2012, 03:39 PM) -- I partly agree with you last post, however, I really don't think it will be easy for us to convince atom (http...
Hash-IT Very old oclHashcat-plus Support 125 250,821 05-28-2012, 04:08 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

M@LIK Wrote: (05-28-2012, 05:12 PM) -- Haha... I was expecting this. Just add this to the script: Code: -- /\(.\).*\(.\).*\1.*\2/d -- Let me know if you found any other bugs! -- Do you mean ...
Hash-IT Very old oclHashcat-plus Support 125 250,821 05-28-2012, 05:18 PM
    Thread: Hello, i need dictionaries
Post: RE: Hello, i need dictionaries

@M@lik :D @guyigoog This (https://www.skullsecurity.org/wiki/index.php/Passwords) site is the best there is for word lists.
Hash-IT Old hashcat Support 5 10,458 05-28-2012, 05:20 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Thank you, I just wasn't sure and didn't want Pixel to misunderstand. :)
Hash-IT Very old oclHashcat-plus Support 125 250,821 05-28-2012, 05:23 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Ha ha ! For fans of star wars, M@lik is a "SEDI" master !! :D
Hash-IT Very old oclHashcat-plus Support 125 250,821 05-28-2012, 05:31 PM
    Thread: Cracking LM
Post: RE: Cracking LM

@M@LIK Quote: -- 0182BD0BD4444BF836077A718CCDF409 -- Exhausted for me also. :(
Hash-IT Very old oclHashcat-plus Support 8 33,383 05-28-2012, 06:27 PM
    Thread: Stop When Found
Post: Stop When Found

I am brute forcing an uppercase password of 8 characters using the code below. I have cut it down for simplicity. I also know that I didn't need to make a custom character set but this is just test ...
Hash-IT Very old oclHashcat-plus Support 8 11,973 05-28-2012, 07:16 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Well done Pixel, you are a good beta tester ! When this code is sorted we will have to talk about which one of us is generating which parts. :) We need to see who will help and just split between ...
Hash-IT Very old oclHashcat-plus Support 125 250,821 05-28-2012, 07:19 PM
    Thread: Stop When Found
Post: RE: Stop When Found

undeath Wrote: (05-28-2012, 07:23 PM) -- why do you run three instances at once on the same machine? -- I don't, this is just a sample of the first 3. They also run consecutively, not concurrently...
Hash-IT Very old oclHashcat-plus Support 8 11,973 05-28-2012, 07:26 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

When the codes ready I think we could just post here which we are doing, so for example you could say you wanted to do A,B and C and I could do D,E and F... They do need to be in individual letters...
Hash-IT Very old oclHashcat-plus Support 125 250,821 05-28-2012, 07:29 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

I can't wait to see how much smaller we can make each individual character set. I might generate one tonight just to see. I know there still might be bugs but its just a test.
Hash-IT Very old oclHashcat-plus Support 125 250,821 05-28-2012, 07:48 PM
    Thread: Stop When Found
Post: RE: Stop When Found

Thank you M@LIK ! :D I just used exit instead of && goto:eof, I assume your version is more correct. Can I ask how would I jump to another project when a key is found ? I suspect something like...
Hash-IT Very old oclHashcat-plus Support 8 11,973 05-28-2012, 10:23 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Well done Pixel. I really hope there are no more bugs. I am concerned there may be and we waste our time. I am not doubting M@LIK, it is very complex and nobody gets stuff like this right straigh...
Hash-IT Very old oclHashcat-plus Support 125 250,821 05-28-2012, 10:30 PM