Search Results
|
Post
[asc]
|
Author |
Forum |
Replies |
Views |
Posted |
|
|
Thread: Unable to use own hash database
Post: RE: Unable to use own hash database
Can't diagnose this without understanding more about how you are creating hashes.txt.
What happens if hashes.txt contains only the MD5 example hash from the hashcat wiki (8743b52063cd84097a65d1633f... |
|
royce |
hashcat
|
5 |
4,582 |
12-30-2017, 04:15 PM |
|
|
Thread: Unable to use own hash database
Post: RE: Unable to use own hash database
The error
Hash 'hashes.txt': Line-length exception
... is not very clear. What it means is that since the system couldn't find the hashes.txt file in the current working directory, it tried to ... |
|
royce |
hashcat
|
5 |
4,582 |
12-31-2017, 06:59 PM |
|
|
Thread: Ubuntu 14.04 Hashcat command?
Post: RE: Ubuntu 14.04 Hashcat command?
Prepend "./" (because the current directory isn't in your path by default in Linux) and use the executable for your platform (cudaHashcat64.bin or the 32-bit equivalent). |
|
royce |
Old hashcat Support
|
11 |
16,491 |
11-16-2015, 02:40 AM |
|
|
Thread: Two sessions writing to the same potfile
Post: RE: Two sessions writing to the same potfile
Use the source, Luke. :)
If you look at locking.c and potfile.c in the source code, it appears that (as long as you're not on Windows), some basic locking of the potfile is happening.
That being... |
|
royce |
hashcat
|
6 |
4,963 |
04-07-2018, 05:26 AM |
|
|
Thread: Two Dictionaries + 3 digits
Post: RE: Two Dictionaries + 3 digits
Use 'combinator' tool from hashcat-utils and pipe it into hashcat, and then apply the ?d?d?d at the end using hashcat itself.
https://hashcat.net/wiki/doku.php?id=hashcat_utils#combinator
A simp... |
|
royce |
hashcat
|
1 |
1,638 |
08-13-2018, 07:02 AM |
|
|
Thread: Trying to understand RLI and RLI2 better
Post: RE: Trying to understand RLI and RLI2 better
The purpose of rli is to diff two lists, and only show the new ones in the new file. It's not a dedupe tool.
For general dedupe, sort -u is your go-to for this. I use this alias (adjust parameters to... |
|
royce |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
1 |
2,745 |
12-25-2017, 08:57 PM |
|
|
Thread: Trying to get formatting right
Post: RE: Trying to get formatting right
Posting non-example unredacted hashes is against the forum rules (https://hashcat.net/forum/announcement-2.html). I've redacted your post.
It looks like this mode may match:
Code:
--
140... |
|
royce |
hashcat
|
6 |
3,626 |
01-20-2019, 08:53 PM |
|
|
Thread: truncating passwords instead of rejecting them
Post: RE: truncating passwords instead of rejecting them
For DES crypt, it would be extremely useful to be able to apply existing rulesets that generate passwords longer than eight characters, without modifying them.
DES crypt is a special case because it ... |
|
royce |
Old oclHashcat Support
|
6 |
10,384 |
01-14-2015, 09:56 PM |
|
|
Thread: truncating passwords instead of rejecting them
Post: RE: truncating passwords instead of rejecting them
Awesome - that's *perfect*! That's exactly what I needed to know. |
|
royce |
Old oclHashcat Support
|
6 |
10,384 |
01-14-2015, 10:11 PM |
|
|
Thread: truncating passwords instead of rejecting them
Post: RE: truncating passwords instead of rejecting them
Hmm, still rejecting 60% of my passwords. I dug around a little more, and found this thread:
https://hashcat.net/forum/thread-3132.html
It turns out that on GPU, using -r to specify a separate t... |
|
royce |
Old oclHashcat Support
|
6 |
10,384 |
01-14-2015, 10:31 PM |
|
|
Thread: truecrypt with unknown algorithm
Post: RE: truecrypt with unknown algorithm
There isn't an option to try all methods, because -- by design -- it is difficult to confirm which algorithms were used (other than by successfully mounting it or cracking it).
The best you'll be a... |
|
royce |
hashcat
|
2 |
3,236 |
06-06-2017, 02:43 PM |
|
|
Thread: trouble with samdump2
Post: RE: trouble with samdump2
Posting real hashes is against the forum rules.
The hashes above are special LM and NTLM hashes that indicate an empty/non-set password.
If you're using something called a "Free password hash cr... |
|
royce |
General Talk
|
2 |
2,742 |
05-09-2018, 04:14 PM |
|
|
Thread: Tridition DES supported ???
Post: RE: Tridition DES supported ???
Hi, oscam. Last I'd heard (2012), key-based DES is not supported.
The hash type 1500 - "descrypt, DES(Unix), Traditional DES" - is not keyed DES encryption. It's a format used to hash passwords o... |
|
royce |
General Help
|
3 |
5,658 |
03-07-2015, 06:43 PM |
|
|
Thread: Total newbie needing advice
Post: RE: Total newbie needing advice
Googling for "hashcat wpa", the first hit is:
https://hashcat.net/wiki/doku.php?id=cracking_wpawpa2
Does this help? |
|
royce |
Old oclHashcat Support
|
5 |
6,999 |
11-15-2015, 11:22 PM |
|
|
Thread: Total newbie needing advice
Post: RE: Total newbie needing advice
And in your case, if it's 8 lower case, the mask would be ?l?l?l?l?l?l?l?l, using attack mode 3 (-a 3), so something like:
[hashcat executable] -m 2500 -a 3 myfile.hccap ?l?l?l?l?l?l?l?l |
|
royce |
Old oclHashcat Support
|
5 |
6,999 |
11-15-2015, 11:24 PM |
|
|
Thread: TitleCase rule with non-space chars
Post: RE: TitleCase rule with non-space chars
You can chain a couple of rules together:
s- E s -
That's
- replace all dashes with spaces
- title case
- replace all spaces with dashes again
It would be cool if E could take an argument of what ... |
|
royce |
hashcat
|
5 |
4,812 |
04-18-2017, 08:07 PM |
|
|
Thread: TitleCase rule with non-space chars
Post: RE: TitleCase rule with non-space chars
Ah, I see. Interesting approach - could be handy. If your target character already exists in the string, you'll get some inexact results, but that might be acceptable.
Actual discovered plains can be... |
|
royce |
hashcat
|
5 |
4,812 |
04-18-2017, 10:51 PM |
|
|
Thread: TitleCase rule with non-space chars
Post: RE: TitleCase rule with non-space chars
Yeah, requesting an "e" rule seems useful. I've requested it (#1231 (https://github.com/hashcat/hashcat/issues/1231))
After the current run finishes, --loopback takes the actual plains that you fou... |
|
royce |
hashcat
|
5 |
4,812 |
04-19-2017, 03:41 PM |
|
|
Thread: Titan Z Questions
Post: RE: Titan Z Questions
I'm not familiar with whether or not there has been more than one era of Titan Z.
crackingservice.com benchmark says (for WPA2):
GeForce GTX titan Z 188000 hash/s
... but that may be for a pr... |
|
royce |
Hardware
|
2 |
2,662 |
06-14-2018, 08:10 AM |
|
|
Thread: TITAN RTX - performance issues?
Post: RE: TITAN RTX - performance issues?
It's OK to use hashcat GUI if it works for what you're trying to do. But many of the things you'll eventually want to do are better done with the command line directly. |
|
royce |
hashcat
|
5 |
2,339 |
10-29-2019, 06:16 AM |