Search Results
|
Post |
Author |
Forum
[desc]
|
Replies |
Views |
Posted |
|
|
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: Cracking LM
Post: RE: Cracking LM - edit1
@undeath (https://hashcat.net/forum/user-85.html):: Not sure what you really mean...
It's Nvidia, I download the drivers from here: https://www.nvidia.com/drivers
The current version on my machine is:... |
|
M@LIK |
Very old oclHashcat-plus Support
|
8 |
33,381 |
05-28-2012, 06:35 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: Cracking LM
Post: Cracking LM
Hi everyone,
I've noticed some very weird behaviors while playing with LM hashes.
So I generated some LM hashes:
Code:
--
0182BD0BD4444BF836077A718CCDF409:12345678
8C6F5D02DEB21501:ABC
1C3A2B6D9... |
|
M@LIK |
Very old oclHashcat-plus Support
|
8 |
33,381 |
05-28-2012, 06:17 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: Stop When Found
Post: RE: Stop When Found
@Hash-IT (https://hashcat.net/forum/user-776.html):: What you got is the best!
Just add this line to the end of each run line:
Code:
--
IF EXIST "Found.txt" echo WPA key found! && goto:eof
--
So it ... |
|
M@LIK |
Very old oclHashcat-plus Support
|
8 |
11,970 |
05-28-2012, 08:18 PM |
|
|
Thread: Stop When Found
Post: RE: Stop When Found
Actually you don't need "goto" for that.
Code:
--
IF EXIST "Found.txt" echo WPA key found! && [your_2nd_bat_file]
--
|
|
M@LIK |
Very old oclHashcat-plus Support
|
8 |
11,970 |
05-28-2012, 10:38 PM |
|
|
Thread: Stop When Found
Post: RE: Stop When Found
A whole script for shutting down? That doesn't sound professional xD
Use "shutdown /s" command instead. See "shutdown /?" for more options.
Code:
--
IF EXIST "Found.txt" shutdown /s
--
You're alw... |
|
M@LIK |
Very old oclHashcat-plus Support
|
8 |
11,970 |
05-28-2012, 10:55 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: Cracking LM
Post: RE: Cracking LM
@atom (https://hashcat.net/forum/user-1.html):: You should have looked closer...
atom Wrote:
--
As well as for my sm_21 GPU:
Code:
--
...
36077a718ccdf409:8
0182bd0bd4444bf8:1234467
...
--
--
0182b... |
|
M@LIK |
Very old oclHashcat-plus Support
|
8 |
33,381 |
05-29-2012, 03:00 PM |
|
|
Thread: cracking nexentа password
Post: RE: cracking nexentа password
This is SHA-256(Unix), not the regular SHA256. It's not supported by oclHashcat-plus. |
|
M@LIK |
Very old oclHashcat-plus Support
|
1 |
4,998 |
05-30-2012, 05:34 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: Start From Stop At Brute Force
Post: RE: Start From Stop At Brute Force
Thumbs up for these options in oclHashcat-plus:
Code:
--
-s, --pw-skip=NUM Start cracking at NUM
-f, --pw-skip-plain=STR Like --pw-skip, but start cracking at STR
--
|
|
M@LIK |
Very old oclHashcat-plus Support
|
15 |
29,325 |
06-01-2012, 02:09 AM |
|
|
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: Regular Expression Interpreter
Post: RE: Regular Expression Interpreter
Like undeath (https://hashcat.net/forum/user-85.html) said, this needs a whole new level of programming.
To Re-program each and every single feature\code in regex into GPU-supporting language.
Howe... |
|
M@LIK |
Very old oclHashcat-plus Support
|
11 |
22,316 |
06-01-2012, 03:52 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: Slow Left Mask or Dict
Post: RE: Slow Left Mask or Dict
Yup, I noticed this too.
I just leave it for 5-10mins to reach the maximum speed. |
|
M@LIK |
Very old oclHashcat-plus Support
|
7 |
14,197 |
06-11-2012, 01:53 PM |
|
|
Thread: Cracking LM
Post: RE: Cracking LM
If I'm not mistaken, this is a serious problem! |
|
M@LIK |
Very old oclHashcat-plus Support
|
8 |
33,381 |
06-12-2012, 02:58 PM |
|
|
Thread: Rules for Left and Right Dictionary
Post: RE: Rules for Left and Right Dictionary
mastercracker Wrote:
--
...
Girl
girl
beauty
mascara
...
--
LOL... What were you thinking dude??
To do the dict-to-rule thing, using sed:
Code:
--
sed 's/\(.\)/$\1/g' [dict_file]
--
Co... |
|
M@LIK |
Very old oclHashcat-plus Support
|
7 |
14,863 |
06-13-2012, 07:29 PM |