Limiting the consecutive occurrence - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html) +--- Forum: Very old oclHashcat-plus Support (https://hashcat.net/forum/forum-23.html) +--- Thread: Limiting the consecutive occurrence (/thread-1201.html) |
RE: Limiting the consecutive occurrence - Pixel - 05-30-2012 (05-29-2012, 01:47 PM)M@LIK Wrote:Pixel Wrote: So, how would sed delete all lines that don't have at least one or more duplicate character any where in the whole line? Thanks M@LIK, what would it be in regular expression? I've tried (.).*\1/! and (.).*\1! but it don't work, Im guessing it has something to do with that exclamation mark at the end. Yes Hash-IT I know it will remove too much, only doing it to get abit more of an understanding of sed and regular expression as they are very similar and powerful tools, plus just to see what happens. (05-29-2012, 01:47 PM)M@LIK Wrote:Pixel Wrote: I over looked this, well spotted ntk. We should include this. I suppose I could use ULM to remove these... (05-29-2012, 02:07 PM)Hash-IT Wrote:(05-29-2012, 01:47 PM)M@LIK Wrote: According to this : "AMD dual core 3GHz" It's your CPU : ( It looks like I'm not the only one that needs to upgrade their computer in some way. hehe Think we should scrap this one... Like M@LIK said it slows it down too much. Code: /\(ABCD\|BCDE\|CDEF\|DEFG\|EFGH\|FGHI\|GHIJ\|HIJK\|IJKL\|JKLM\|KLMN\|LMNO\|MNOP\|NOPQ\|OPQR\|PQRS\|QRST\|RSTU\|STUV\|TUVW\|UVWX\|VWXY\|WXYZ\)/d Got another password it's QVHHRIRA got this from a friend, I have seen it so it is real. Tested it and it got striped out again, so we need to loosen the filter abit more so that there is no more than 2 instances of a duplicate character. M@LIK could you tell me which command I need to change so it will include this? guessing its this one... Code: /\(.\).*\1.*\(.\).*\2/d RE: Limiting the consecutive occurrence - ntk - 05-30-2012 the size for each alphabet is each about 54.9 GB, prohibit only repeating more then one time.I have n-~,t-~,k-worldlist it takes between 88min and 106min, on an Athlon(tm) II X2 270 Processor × 2 , overclocked. "Got another password it's QVHHRIRA got this from a friend" No worry. It is similar to our strategy of fighting the dragon by packing its head, we very much know that we miss out passwords where repeating is inevitable like when they use DOB in password, so would be 11Mar...,Jun22, or when part of DOB stands next to birth year 01-19xx, 11-19xx, Feb-2-2000xx (a prodigy of cracker) or in fullname McClDold of McCleod Donnald, or MARRichard...,FEBBono, JunNora, SepPerl etc But why worrying? Have we not known, we have strapped all special cases by using filter? we also know they are all strapped in the 20GB parts. So in doubt, run first check in the smaller parts, before commit ourself to the 2,5-time-larger dicts. virgin default uses low-alpha. Sky uses upper-alpha BT less then 2 yrs old uses mix-alpha-numeric Plusnet uses mix-alpha-numeric talktalk low-alpha-numeric Can you confirm? Do you know any more? Could that be helpful start? http://ubuntuguru.wordpress.com/2007/03/09/whats-the-best-file-compression-method/ will start over-night with zip... or will need a new HD soon ... RE: Limiting the consecutive occurrence - arnbju - 05-30-2012 An idea for a workaround to get sed to run on multiple cores could be: maskprocessor > sed rule1 > sed rule2 > sed rule3 > output file. Then you would run 3 instances of sed each on its own core, shouldn't that work? RE: Limiting the consecutive occurrence - M@LIK - 05-30-2012 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 another password it's QVHHRIRA got this from a friend, I have seen it so it is real. Tested it and it got striped out again, so we need to loosen the filter abit more so that there is no more than 2 instances of a duplicate character. I don't understand what you exactly mean there, but if you want to allow "QVHHRIRA", yes, delete that line. arnbju Wrote: An idea for a workaround to get sed to run on multiple cores could be: maskprocessor > sed rule1 > sed rule2 > sed rule3 > output file. I don't think so. RE: Limiting the consecutive occurrence - Hash-IT - 05-30-2012 (05-30-2012, 02:00 AM)Pixel Wrote: It looks like I'm not the only one that needs to upgrade their computer in some way. hehe Cheeky git !!! .... @M@LIK M@LIK, your work on this thread is tremendous, well done mate keep it up. I am sure there are many people who appreciate your efforts here but none more so then Pixel and I. Its particularly interesting to see the SED command and regular expression for each filter, very interesting. RE: Limiting the consecutive occurrence - Pixel - 05-30-2012 (05-30-2012, 06:54 PM)M@LIK Wrote:Pixel Wrote: Got another password it's QVHHRIRA got this from a friend, I have seen it so it is real. Tested it and it got striped out again, so we need to loosen the filter abit more so that there is no more than 2 instances of a duplicate character. 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. I tried removing Code: /\(.\).*\1.*\(.\).*\2/d but on "A" it gives me this... AABBCCDD <--- this line has 4 instances AABBCCDE <--- this line has 3 instances AABBCCDF <--- this line has 3 instances Code: mp64.exe ?u?u?u?u?u?u?u?u --stop-at AAZZZZZZ | sed -f awesome_script.txt >A.txt heres whats now in the text file... Code: /\(.\)\1\1/d I hope you get me now, Im hopeless at explaining things. Thanks for you time and effort, you are a BIG help M@LIK. RE: Limiting the consecutive occurrence - Hash-IT - 05-31-2012 (05-30-2012, 10:11 AM)ntk Wrote: virgin default uses low-alpha. I'll tell you what I know. Quote:virgin default uses low-alpha. Yes, 8 characters long. Quote:Sky uses upper-alpha Yes, 8 characters long. Quote:BT less then 2 yrs old uses mix-alpha-numeric Don't know. Quote:Plusnet uses mix-alpha-numeric Yes, the only genuine one I have personally seen was 63 characters and Upper + numeric. Quote:talktalk low-alpha-numeric No I have only seen upper + numeric 8 characters long. (05-30-2012, 10:11 AM)ntk Wrote: will start over-night with zip... or will need a new HD soon ... Are you sure you want to start now ? Don't you want to wait and see what the final filter turns out like ? RE: Limiting the consecutive occurrence - Pixel - 05-31-2012 (05-30-2012, 10:11 AM)ntk Wrote: BT less then 2 yrs old uses mix-alpha-numeric Old and the new BTHub3 uses 10 lower HEX characters. RE: Limiting the consecutive occurrence - Hash-IT - 05-31-2012 (05-31-2012, 03:20 AM)Pixel Wrote:(05-30-2012, 10:11 AM)ntk Wrote: BT less then 2 yrs old uses mix-alpha-numeric Thats interesting Pixel, thanks for the info. Have you seen many new BTHub3's default passwords ? I am surprised they still use the same keys. I know I may be speaking a little too soon but they are almost becoming brute force-able to a wealthy and determined attacker !! I think another filter is required !!!! RE: Limiting the consecutive occurrence - M@LIK - 06-01-2012 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. Oh I get you, that wasn't very easy to do. No more than 2 instances of a duplicate character: Code: /\(.\).*\1.*\(.\).*\2.*\(.\).*\3/d Yup all these, don't forget to remove the previous rule: Code: /\(.\).*\(.\).*\1.*\2/d |