Search Results
|
Post |
Author |
Forum |
Replies |
Views |
Posted
[desc]
|
|
|
Thread: keep-guessing + rules?
Post: RE: keep-guessing + rules?
Ha! I'm only about one chapter ahead of you in the book. ;)
And guess what? I should have tried it first! :)
--keep-guessing works fine with --debug-mode (for at least some attacks):
Code... |
|
royce |
hashcat
|
2 |
2,181 |
06-18-2018, 11:00 PM |
|
|
Thread: Save all valid password candidates
Post: RE: Save all valid password candidates
Verify your syntax using an existing format. If it works for that, it should work for yours. |
|
royce |
General Talk
|
6 |
4,521 |
06-19-2018, 12:44 AM |
|
|
Thread: Extracting Hashes
Post: RE: Extracting Hashes
This varies depending on the hash type. But generally, the John the Ripper tools are usually quite good - and up to date for many hash types. |
|
royce |
General Talk
|
1 |
1,866 |
06-19-2018, 08:04 AM |
|
|
Thread: Single-mode john analog for hashcat
Post: RE: Single-mode john analog for hashcat
I have to admit, it seems like single mode would only make a real difference for slow hashes for which each target password itself has a known per-password plaintext component (such as the Myspace lea... |
|
royce |
hashcat
|
5 |
4,080 |
06-21-2018, 06:16 AM |
|
|
Thread: Cant get hashcat to run on new cracking computer
Post: RE: Cant get hashcat to run on new cracking comput...
... and defined here:
Code:
--
https://github.com/hashcat/hashcat/blob/master/src/mpsp.c#L20
static const char *DEF_MASK = "?1?2?2?2?2?2?2?3?3?3?3?d?d?d?d";
https://github.com/hashcat/hash... |
|
royce |
hashcat
|
5 |
3,495 |
07-01-2018, 08:37 PM |
|
|
Thread: Salted vs Unsalted SHA-512
Post: RE: Salted vs Unsalted SHA-512
If you mean simple salting (and not salting+stretching like sha512crypt), then performance scales directly with the keyspace of the salt.
The attack has to try all possible salts. If the salt spac... |
|
royce |
General Talk
|
2 |
2,404 |
07-04-2018, 06:59 PM |
|
|
Thread: [split] hashcat v4.1.0
Post: RE: hashcat v4.1.0
partyhead, please read the forum rules:
https://hashcat.net/forum/archive/index.php?announcement-2.html
* Do not hijack threads (this isn't a hashcat-forums-specific rule; hijacking threads is c... |
|
royce |
hashcat
|
1 |
1,932 |
07-04-2018, 10:54 PM |
|
|
Thread: Error with NetNtlmv2 hash converted from john
Post: RE: Error with NetNtlmv2 hash converted from john
Hmm - NetNTLMv2 looks longer than that. See the example NetNTLMv2 hash here:
https://hashcat.net/wiki/doku.php?id=example_hashes
If your command line works with that example hash, the problem is... |
|
royce |
hashcat
|
1 |
1,667 |
07-05-2018, 05:27 PM |
|
|
Thread: Learn Next?
Post: RE: Learn Next?
One of the most educational experiences I've had with hashcat was when I did this:
* working a large general list using all of the techniques that I knew,
* running PRINCE, random rules, or junk ... |
|
royce |
hashcat
|
2 |
2,037 |
07-06-2018, 08:35 PM |
|
|
Thread: Combinator - how to save combined files.
Post: RE: Combinator - how to save combined files.
I assume that you know that you could just regenerate them when you need them, and save the disk space. :)
But saving general command output to a file is an OS/commandline thing - just basic redire... |
|
royce |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
3 |
3,857 |
07-07-2018, 12:02 AM |
|
|
Thread: Help for rule
Post: RE: Help for rule
I do not understand the question yet. :) Could you provide an example? |
|
royce |
General Talk
|
10 |
6,459 |
07-07-2018, 03:51 PM |
|
|
Thread: Help for rule
Post: RE: Help for rule
Or
Code:
--
mp64 -1 ?l?d?u "^?1^?1" >prepend-ldu2.rule
--
The nice thing about philsmd's solution, though, is that it generates the rules in Markov order. |
|
royce |
General Talk
|
10 |
6,459 |
07-07-2018, 09:08 PM |
|
|
Thread: Combinator Attack issue with rules
Post: RE: Combinator Attack issue with rules
Just a guess, but you could try combinator3 and then tack on four digits with rules ( [wordlist] [4digitwordlist] [wordlist] ?d?d?d?d) |
|
royce |
hashcat
|
10 |
6,617 |
07-08-2018, 06:51 AM |
|
|
Thread: Help for rule
Post: RE: Help for rule
In this case, you don't want to use mp64 to generate a wordlist or pipe anything to hashcat. Instead, you want to use it to generate rules.
Code:
--
$ mp64 -1 ?l?d?u "^?1^?1" >prepend-ldu2.rule
... |
|
royce |
General Talk
|
10 |
6,459 |
07-08-2018, 06:59 AM |
|
|
Thread: Combinator Attack issue with rules
Post: RE: Combinator Attack issue with rules
No - rather, you'd pipe the output from combinator to hashcat, and use hashcat to apply the ?d?d?d?d rule |
|
royce |
hashcat
|
10 |
6,617 |
07-08-2018, 07:23 PM |
|
|
Thread: Help for rule
Post: RE: Help for rule
Apologies for the error in my previous post - I was using -a 3 accidentally; it should have been -a 0.
Code:
--
hashcat -m XXXX -a 0 -w 3 -r prepend-ldu2.rule hccapx [wordlist]
--
|
|
royce |
General Talk
|
10 |
6,459 |
07-08-2018, 09:59 PM |
|
|
Thread: Combinator Attack issue with rules
Post: RE: Combinator Attack issue with rules
I was being loose with the vocab again, but from the thread I thought that he was going to be using a rule to simulate a hybrid attack. |
|
royce |
hashcat
|
10 |
6,617 |
07-09-2018, 04:33 PM |
|
|
Thread: Combinator Attack issue with rules
Post: RE: Combinator Attack issue with rules
undeath Wrote: (07-09-2018, 05:01 PM)
--
There is not "a rule" to simulate a hybrid attack ;)
--
I didn't mean to imply that all you needed was a ruleset in order to do so. |
|
royce |
hashcat
|
10 |
6,617 |
07-09-2018, 11:39 PM |
|
|
Thread: how to use an 11TB wordlist file without 11TB of storage
Post: RE: how to use an 11TB wordlist file without 11TB ...
Most basic use of crunch can be executed by hashcat directly.
The ?H charset is cap hex (0-9 and capital A-F). If it's a randomly generated string within that charset, a mask of ?H?H?H?H?H?H?H?H?H?... |
|
royce |
hashcat
|
4 |
5,152 |
07-20-2018, 03:33 PM |
|
|
Thread: how to use an 11TB wordlist file without 11TB of storage
Post: RE: how to use an 11TB wordlist file without 11TB ...
Like this, but adapted to your hash type (-m), hash, and mask (the ?H sequence).
Code:
--
$ hashcat --help | grep Brute-Force
Brute-Force | MD5 | hashcat -a 3 -m 0 example0.hash ?a?a?a?a... |
|
royce |
hashcat
|
4 |
5,152 |
07-20-2018, 04:31 PM |