Search Results
|
Post |
Author |
Forum |
Replies |
Views
[asc]
|
Posted |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
Hello Hash-IT, I've been trying to do something similar to you I think.
I wanted to limit the number of repeated characters in a line as well as limit the total amount of repeats in a line. Hope yo... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-26-2012, 05:18 AM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
Glad you like the links. I know it seems "old fashioned", they are only for testing other tools out that don't support rules and masks, add the fact that my GPU is very weak, GF 8400gs and it gets me ... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-26-2012, 10:09 PM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
Hash-IT Wrote: (05-26-2012, 10:33 PM)
--
I did a very basic and simplistic calculation to try to work out the gain and I "think" if you had to search the entire keyspace using an optimised version it... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-27-2012, 01:52 AM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
Hash-IT Wrote: (05-28-2012, 12:02 AM)
--
To catch the "SS" part of your password you need to modify the code a little to the quoted below.
Code:
--
"/\(.\)\1\1/d;/\(.\).*\1.*\1/d"
--
You can chang... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-28-2012, 01:19 AM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
Just had another idea for sed, can it also delete lines that have any 6 character alphabet sequence within them?
This is the output I'm now getting...
Code:
--
AABCDEFG
AABCDEFH
AABCDEFI
AAB... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-28-2012, 09:26 AM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
Hash-IT Wrote: (05-28-2012, 05:23 PM)
--
Thank you, I just wasn't sure and didn't want Pixel to misunderstand. :)
--
Yes I feel stupid now, should of listen to what the sed god M@LIK said in the fi... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-28-2012, 05:28 PM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
Hash-IT Wrote: (05-28-2012, 05:31 PM)
--
Ha ha !
For fans of star wars, M@lik is a "SEDI" master !! :D
--
LOL :D |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-28-2012, 05:35 PM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
Hash-IT Wrote: (05-28-2012, 07:19 PM)
--
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 s... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-28-2012, 07:24 PM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
Hash-IT Wrote: (05-27-2012, 10:03 PM)
--
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 c... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-27-2012, 10:47 PM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
Hash-IT Wrote: (05-28-2012, 07:29 PM)
--
They do need to be in individual letters I think, I wouldn't split them further than that.
--
ok, but doesn't hashcat-plus read the whole file before it sta... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-28-2012, 07:36 PM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
M@LIK Wrote: (05-28-2012, 07:39 PM)
--
@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
-... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-28-2012, 07:44 PM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
So we are limiting it to this so far...
No more than 2 instance of upper alpha consecutively.
No more than 2 of any character within a single line
with this command
Code:
--
sed "/\(.\)\1\1/d;/\(.... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-28-2012, 06:15 AM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
M@LIK Wrote: (05-28-2012, 06:43 AM)
--
@Pixel (https://hashcat.net/forum/user-1769.html):: I believe this is what you want:
Code:
--
A BUG found!
--
I don't what you people trying to do...
I'm just ... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-28-2012, 06:55 AM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
ntk Wrote: (05-28-2012, 09:57 AM)
--
DO you already plan a place to store them?
--
I figured out some time ago that if you compress a text file that has repetitive patten, like I have here (https://w... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-28-2012, 01:18 PM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
M@LIK Wrote: (05-28-2012, 01:42 PM)
--
Hmm, right now I can think of anything for that, as far as I know there's nothing near to that in sed.
--
Can grep delete lines too? as you only need to delete... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-28-2012, 02:13 PM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
ntk Wrote: (05-29-2012, 12:12 AM)
--
after we have got the right command. There is one more thing to consider:
abcdefgh
hgfedcba
is exactly the same but mirrored only.
--
I over looked this, ... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-29-2012, 09:00 AM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
Hash-IT Wrote: (05-29-2012, 12:45 PM)
--
Just to give you an update, the Z generating is only at 3.95MB at the moment. This is crazy slow !!
How fast are you doing them ?
--
started it at 7.45pm ye... |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-29-2012, 01:01 PM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
all I used are in THIS (https://hashcat.net/forum/thread-1201-post-6552.html#pid6552) post |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-29-2012, 01:38 PM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
ntk Wrote: (05-30-2012, 10:11 AM)
--
BT less then 2 yrs old uses mix-alpha-numeric
--
Old and the new BTHub3 uses 10 lower HEX characters. |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
05-31-2012, 03:20 AM |
|
|
Thread: Limiting the consecutive occurrence
Post: RE: Limiting the consecutive occurrence
This idea seems to work well Hash-IT but we need to find faster way to filter it and figure how hard to filter it. |
|
Pixel |
Very old oclHashcat-plus Support
|
125 |
250,821 |
06-07-2012, 12:27 PM |