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: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

I've already thought about this. The only solution I found is to generate words using maskprocess and piping them to sed, which will do the filtering thing. Code: -- mp64 ?u?u?u?u?u?u?u?u | sed '...
M@LIK Very old oclHashcat-plus Support 125 250,821 05-23-2012, 01:21 AM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Hash-IT Wrote: -- Just a quick note, as I am testing WPA I am guessing I probably won't notice much of a speed reduction as WPA is such a slow algorithm anyway ? -- It's not about the algorithm, It's...
M@LIK Very old oclHashcat-plus Support 125 250,821 05-23-2012, 02:47 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Hey, I've been thinking about this lately, and good news is that I've more than one possible-valid solution in my mind. Problem is I need more time for this, and that I don't have : ( I have final ex...
M@LIK Very old oclHashcat-plus Support 125 250,821 05-25-2012, 09:36 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

This is getting huge Hash-IT (https://hashcat.net/forum/user-776.html), you should be proud : P I see a lot of good ideas, actually every idea here gives me several new ideas xD - sed commands ar...
M@LIK Very old oclHashcat-plus Support 125 250,821 05-27-2012, 03:30 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

This wasn't very hard: Code: -- mp64 ?u?u?u?u?u?u?u?u -s MYPASSAK | sed "/\(.\).*\1.*\1/d" MYPASSAK MYPASSAL MYPASSAM MYPASSAN MYPASSAO MYPASSAP MYPASSAQ MYPASSAR MYPASSAT MYPASSAU MYPASS...
M@LIK Very old oclHashcat-plus Support 125 250,821 05-27-2012, 04:30 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Hmm, interesting. I'd rather give you the command than giving a lecture about sed xD: Code: -- mp32 ?u?u?u?u | sed "/\(.\)\1/d;/\(.\).*\1.*\1/d" > wordlist1.txt -- Hash-IT Wrote: -- No more than...
M@LIK Very old oclHashcat-plus Support 125 250,821 05-27-2012, 05:53 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

@Pixel (https://hashcat.net/forum/user-1769.html):: I believe this is what you want: Code: -- sed "A BUG found!" xD -- I don't what you people trying to do... I'm just the scripting guy!! xD EDiT: "...
M@LIK Very old oclHashcat-plus Support 125 250,821 05-28-2012, 06:43 AM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

@Pixel (https://hashcat.net/forum/user-1769.html):: Yup, try the new one. In the "EDiT". If it doesn't work too, I'll try fixing it when I'm back. It's 8am and I'm leaving.
M@LIK Very old oclHashcat-plus Support 125 250,821 05-28-2012, 07:21 AM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Haha... I was expecting this. This happend because: Pixel Wrote: -- so I remove one of them. The command I using that seems to work is... -- Just add this to the script: Code: -- /\(.\).*\(...
M@LIK Very old oclHashcat-plus Support 125 250,821 05-28-2012, 05:12 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Hash-IT (https://hashcat.net/forum/user-776.html):: Add it. I couldn't script that rule in one command, so it is done in two : )
M@LIK Very old oclHashcat-plus Support 125 250,821 05-28-2012, 05:20 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Pixel Wrote: -- Edit: I got it working but can't be sure as I don't understand the command at all but notice you added Code: -- /\(.\).*\1.*\(.\).*\2/d -- and Code: -- /\(.\).*\(.\).*\1.*\2/d -...
M@LIK Very old oclHashcat-plus Support 125 250,821 05-28-2012, 10:21 AM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Hash-IT Wrote: -- Well, I am sorry to report I am getting nowhere with this... -- : ( I'm using Windows too, maybe your CPU is not fast enough. sed is probably the fastest regex (Regular Expressi...
M@LIK Very old oclHashcat-plus Support 125 250,821 05-28-2012, 01:42 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Okay, a bit big progress here! @Pixel (https://hashcat.net/forum/user-1769.html):: I have implemented that rule, any 4 or above characters in alphabetic order will be knocked out! Using the sed itse...
M@LIK Very old oclHashcat-plus Support 125 250,821 05-28-2012, 03:39 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

ntk Wrote: -- Anyone has idea to generate the first half then use rule via OCLplus (GPU) to reverse it to form the missing half? -- Disagree. Pixel Wrote: -- So, how would sed delete all lines th...
M@LIK Very old oclHashcat-plus Support 125 250,821 05-29-2012, 01:47 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

@Pixel (https://hashcat.net/forum/user-1769.html):: Damnit, what a little dirty slip! xD Add this and you should be fine: Code: -- /\(.\).*\(.\).*\2.*\1/d -- I'm pretty sure, no more of that will ...
M@LIK Very old oclHashcat-plus Support 125 250,821 05-28-2012, 07:39 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Pixel Wrote: -- Thanks M@LIK, what would it be in regular expression? -- I don't think there's one, this is like "if not", whenever the conditions are not found, delete. Pixel Wrote: -- Got anoth...
M@LIK Very old oclHashcat-plus Support 125 250,821 05-30-2012, 06:54 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Pixel Wrote: -- OK I'll explain more, what I meant was two repeat instances total any where in the whole line, so in QVHHRIRA, the two Hs is one instance and the two Rs would be the second instance. ...
M@LIK Very old oclHashcat-plus Support 125 250,821 06-01-2012, 01:55 AM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Pixel Wrote: -- M@LIK I think I found a bug: ... The red ones are missing . -- Opos! My bad, we should have removed all these three lines: Code: -- /\(.\).*\1.*\(.\).*\2/d /\(.\).*\(.\).*\1.*\...
M@LIK Very old oclHashcat-plus Support 125 250,821 06-01-2012, 03:44 PM
    Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence

Sorry for being negative, but wait, I smell something wrong here! Let me just think about it.
M@LIK Very old oclHashcat-plus Support 125 250,821 06-03-2012, 02:58 PM
    Thread: SL3, they did it again
Post: RE: SL3, they did it again

Moneyworshipper sons of whores... It's like they would kill each other for this sl3 dogshit...
M@LIK Very old oclHashcat-lite Support 71 191,553 01-01-2013, 06:40 PM