Search Results
|
Post |
Author |
Forum
[desc]
|
Replies |
Views |
Posted |
|
|
Thread: dictionary maker?
Post: RE: dictionary maker?
I assume you suffer from a brain damage so:
Code:
--
mp64 -1 ?l?d -o outputfile ?1?1?1?1?1?1
--
|
|
M@LIK |
General Help
|
7 |
13,278 |
10-20-2012, 03:32 PM |
|
|
Thread: How to apply rules to combinator attack?
Post: RE: How to apply rules to combinator attack?
I'm not sure, but I believe It's:
Code:
--
-j, --rule-left=RULE Single rule applied to each word from left dict
-k, --rule-right=RULE Single rule applied to each word f... |
|
M@LIK |
General Help
|
12 |
22,997 |
10-21-2012, 09:12 PM |
|
|
Thread: How to apply rules to combinator attack?
Post: RE: How to apply rules to combinator attack?
CPU's hashcat apply rules to the whole candidate, not separately. |
|
M@LIK |
General Help
|
12 |
22,997 |
10-21-2012, 09:14 PM |
|
|
Thread: How to apply rules to combinator attack?
Post: RE: How to apply rules to combinator attack?
If you want to make "Sup3rThinkers" out of "sup3r" in dict1 and "thinkers" in dict2, you would run:
Code:
--
-plus ... -a1 -j u -k u ... dict1 dict2
--
But you can't do it that simple with CPU's hash... |
|
M@LIK |
General Help
|
12 |
22,997 |
10-21-2012, 10:35 PM |
|
|
Thread: How to apply rules to combinator attack?
Post: RE: How to apply rules to combinator attack?
-plus's -a1 always works with two dicts (Right and left).
And yes, it was brought back due to a request: https://hashcat.net/forum/thread-1335.html
But careful, CPU's hashcat works with one dict a... |
|
M@LIK |
General Help
|
12 |
22,997 |
10-22-2012, 12:02 AM |
|
|
Thread: How to apply rules to combinator attack?
Post: RE: How to apply rules to combinator attack?
@epixoip (https://hashcat.net/forum/user-1746.html):: Single rules (-j, -k) do work with -a1. |
|
M@LIK |
General Help
|
12 |
22,997 |
10-22-2012, 11:17 AM |
|
|
Thread: Bruteforce/Mask captial and non capital letters?
Post: RE: Bruteforce/Mask captial and non capital letter...
Move the mask after the hashfile. |
|
M@LIK |
General Help
|
8 |
20,903 |
10-23-2012, 12:05 PM |
|
|
Thread: Bruteforce/Mask captial and non capital letters?
Post: RE: Bruteforce/Mask captial and non capital letter...
Post your command-line here. |
|
M@LIK |
General Help
|
8 |
20,903 |
10-23-2012, 04:46 PM |
|
|
Thread: is this normal?
Post: RE: is this normal?
Btw, a friend of mine wrote a python code to brute-force the default pass-phrase for these 2wire routers, it will help you in minimizing the time by skipping some candidates.
https://blog.init6.me/201... |
|
M@LIK |
General Help
|
6 |
12,930 |
11-15-2012, 03:45 AM |
|
|
Thread: dictionary generation
Post: RE: dictionary generation
For your case (which is cracking 2wire routers, I assume), see my post on your other thread.
In general, what are you trying to do will not help much, filtering these guesses will reduce performanc... |
|
M@LIK |
General Help
|
2 |
8,079 |
11-15-2012, 03:50 AM |
|
|
Thread: HCCAP format : retrieve bssid
Post: RE: HCCAP format : retrieve bssid
To extract the ESSiD (using just head):
Code:
--
head -c36 hccap
Much more neater than piping twice
--
To extract the BSSiD (using just od):
Code:
--
od -j36 -N6 -tx1 hccap | grep -Eo "[a-f0-9 ]{... |
|
M@LIK |
General Help
|
2 |
6,365 |
11-17-2012, 06:07 PM |
|
|
Thread: How to configure mask attack
Post: RE: How to configure mask attack
hccap files can only contain one handshake. It's impossible to crack more than one handshake using -plus, unless you run more than one instance (with different hccap files).
I don't know how to tell ... |
|
M@LIK |
General Help
|
5 |
16,695 |
12-21-2012, 01:01 AM |
|
|
Thread: Exhausted?
Post: RE: Exhausted?
Toil Wrote:
--
am i doing it wrong
--
Yes, you're doing it wrong.
1st, your commands are ugly, stack them properly.
2nd, your use of the -c parameter with a brute-force attack is extremely ignora... |
|
M@LIK |
General Help
|
6 |
40,300 |
12-24-2012, 04:01 PM |
|
|
Thread: Directory pointing using hashcat-plus-0.12
Post: RE: Directory pointing using hashcat-plus-0.12
Simple.
Code:
--
-plus ..\DirectoryWithDicts
// Run all files in that dict
// Note: On Windows, make sure there's no trailing (back)slash
-plus ..\DirectoryWithDicts\*.txt
// Run all .txt fi... |
|
M@LIK |
General Help
|
4 |
8,368 |
01-13-2013, 03:44 AM |
|
|
Thread: Directory pointing using hashcat-plus-0.12
Post: RE: Directory pointing using hashcat-plus-0.12
Of course, that's wildcard basics.
You can also do: dicts\*non-english*
To run all files having "non-english" in their filenames. With a bit of brains, you can utilize this for a very efficient di... |
|
M@LIK |
General Help
|
4 |
8,368 |
01-13-2013, 04:23 AM |
|
|
Thread: Strange character
Post: RE: Strange character
|
M@LIK |
General Help
|
5 |
9,422 |
01-30-2013, 08:12 AM |
|
|
Thread: Strange character
Post: RE: Strange character
I never said 9d is null.
*Achievement Unlocked*
**Trolled epixoip**
:D |
|
M@LIK |
General Help
|
5 |
9,422 |
01-30-2013, 09:47 AM |
|
|
Thread: [solved] How to remove numbers from dictionary .txt or .dic
Post: RE: How to remove numbers from dictionary .txt or ...
sed is faster:
Code:
--
sed "/^[0-9]*$/d" in > out
--
|
|
M@LIK |
General Help
|
7 |
12,710 |
02-14-2013, 04:39 PM |
|
|
Thread: SHA1 underscore salted ?
Post: RE: SHA1 underscore salted ?
It will not. You can have as many :'s as you want in a salt as long as you use the right -m. |
|
M@LIK |
General Help
|
9 |
15,119 |
02-27-2013, 05:10 PM |
|
|
Thread: Sorting results after cracking
Post: RE: Sorting results after cracking
https://hashcat.net/forum/thread-1700.html Might help. |
|
M@LIK |
General Help
|
4 |
8,472 |
03-03-2013, 09:14 PM |