Search Results
|
Post |
Author |
Forum |
Replies
[asc]
|
Views |
Posted |
|
|
Thread: Dedicated hashcat brain server
Post: RE: Dedicated hashcat brain server
The amount of RAM you'll need is highly variable, depending on the attacks you'll be carrying out, with factors like:
* Whether all systems will be on the same LAN, vs operating over a WAN connecti... |
|
royce |
Hardware
|
3 |
4,462 |
11-11-2018, 07:39 AM |
|
|
Thread: hashcat 5.0.0 with Token length exception with sha1
Post: RE: hashcat 5.0.0 with Token length exception with...
By default, hashcat expects bare hashes (without username). To ignore username, use --username.
With -a 0, you also need to supply a wordlist. If you want to try the default mask attack set instea... |
|
royce |
hashcat
|
3 |
8,194 |
11-19-2018, 03:27 PM |
|
|
Thread: Hashcat exiting with no error message
Post: RE: Hashcat exiting with no error message
|
royce |
hashcat
|
3 |
3,323 |
11-29-2018, 05:08 PM |
|
|
Thread: Brain as a centralized potfile?
Post: RE: Brain as a centralized potfile?
1. Yes. All candidates are centrally reported and indexed. For slow hashes, this is effective, because it allows all clients to skip those candidates. For fast hashes, this will quickly bottleneck the... |
|
royce |
hashcat
|
3 |
2,094 |
12-16-2018, 10:28 PM |
|
|
Thread: Missing example hashes
Post: RE: Missing example hashes
I'll take a look. Thanks for the heads-up!
Note that you can often use 'hashcat --example-hashes' as a workaround. |
|
royce |
hashcat
|
3 |
1,880 |
02-07-2019, 04:05 PM |
|
|
Thread: Missing example hashes
Post: RE: Missing example hashes
OK, I've done the easy ones (that don't require a file upload to hashcat.net), and I've made inquiries about the remainder. Thanks again - good eye! |
|
royce |
hashcat
|
3 |
1,880 |
02-07-2019, 04:30 PM |
|
|
Thread: Wordlist massive attack
Post: RE: Wordlist massive attack
You can assemble the passphrases from a one-word-per-line wordlist, using princeprocessor, and then pipe it to hashcat, using one of the prince_*.rule rules files to supply more work to the GPUs. |
|
royce |
hashcat
|
3 |
2,583 |
03-01-2019, 07:14 AM |
|
|
Thread: Help with specific password scheme
Post: RE: Help with specific password scheme
A hybrid attack might be fine. If you generate the wordlist on the fly, no need to store it anywhere. I'd do it with everything but the first four digits prepended and then pipe the output of that scr... |
|
royce |
hashcat
|
3 |
1,591 |
04-01-2019, 04:48 PM |
|
|
Thread: Help with specific password scheme
Post: RE: Help with specific password scheme
The rules would probably have to stop there, because the number of combinations would probably go up pretty quickly - adding three specials to the previous calculation would be 600K rules x (35^3) wou... |
|
royce |
hashcat
|
3 |
1,591 |
04-02-2019, 04:06 AM |
|
|
Thread: Help me install hxctools
Post: RE: Help me install hxctools
Well, you could ask in this thread:
https://hashcat.net/forum/thread-6661.html |
|
royce |
hashcat
|
3 |
1,607 |
08-26-2019, 03:37 PM |
|
|
Thread: Rule Question
Post: RE: Rule Question
Fair question.
If the rule file contains the "do nothing" rule directive ( : - just a colon by itself), then the original unmodified input words will be used. |
|
royce |
hashcat
|
3 |
1,245 |
08-26-2019, 03:50 PM |
|
|
Thread: Separating words in combinator attack with space
Post: RE: Separating words in combinator attack with spa...
And if it needs to be more than two words wide, you can do something crude like this:
https://gist.github.com/roycewilliams/18e3fb14b97cc05eb95a5645692bccc2 |
|
royce |
hashcat
|
3 |
1,429 |
09-04-2019, 02:41 PM |
|
|
Thread: [PrinceProcessor] Trying to change --pw-max
Post: RE: [PrinceProcessor] Trying to change --pw-max
Modify the source.
Code:
--
--- pp.c-dist 2019-01-14 21:33:46.443328919 -0900
+++ pp.c 2019-09-22 07:25:16.660698312 -0800
@@ -27,9 +27,9 @@
#define IN_LEN_MIN 1
#define IN_LEN_MAX ... |
|
royce |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
3 |
2,080 |
09-22-2019, 05:17 PM |
|
|
Thread: [PrinceProcessor] Trying to change --pw-max
Post: RE: [PrinceProcessor] Trying to change --pw-max
Yeah, the startup time is non-trivial for sure. A big value of PRINCE is in keeping "state" about which words appear most frequently (based on their order in the original wordlist). So if that's not i... |
|
royce |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
3 |
2,080 |
09-22-2019, 08:05 PM |
|
|
Thread: Should I be using a rule instead?
Post: RE: Should I be using a rule instead?
There's no way for a single mask to express optional characters (that I'm aware of).
But if you pass a file containing the masks, they are processed in succession very quickly. |
|
royce |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
3 |
1,925 |
09-25-2019, 06:21 PM |
|
|
Thread: Should I be using a rule instead?
Post: RE: Should I be using a rule instead?
Good point! True for this particular case, but not the more general case. :P ;) |
|
royce |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
3 |
1,925 |
09-25-2019, 10:42 PM |
|
|
Thread: Graphic card or cloud computing
Post: RE: Graphic card or cloud computing
This depends on your use case.
If you have a one-time cracking job that will only take a few hours or days, then the cloud makes more sense.
If you intend to have longer-running jobs, or multipl... |
|
royce |
hashcat
|
3 |
1,505 |
10-11-2019, 07:34 AM |
|
|
Thread: Hashing Linux Passwords
Post: RE: Hashing Linux Passwords
hashcat can't parse the entire /etc/shadow format with all fields.
hashcat expects either a list of raw hashes (or, when using --username, user:hash pairs)
Just trim off the first two fields (cu... |
|
royce |
hashcat
|
3 |
1,447 |
10-30-2019, 03:22 PM |
|
|
Thread: I have error please help me
Post: RE: I have error please help me
Yep, you can't do that.
It looks like you're trying to do a combinator attack. There's a direct combinator attack (which is -a 1), or there is a way to simulate a selectes subset of combinator effect... |
|
royce |
hashcat
|
3 |
1,264 |
12-15-2019, 11:10 PM |
|
|
Thread: change working directory
Post: RE: change working directory
In the future, you can also use https://github.com/philsmd/analyze_hc_restore, written by a core hashcat developer. You can rewrite a restore file, changing various config items. |
|
royce |
hashcat
|
3 |
1,133 |
12-16-2019, 11:43 PM |