Search Results
|
Post |
Author |
Forum |
Replies
[desc]
|
Views |
Posted |
|
|
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: Studying demographics in effective wordlist/rule generation
Post: RE: Studying demographics in effective wordlist/ru...
|
royce |
General Talk
|
2 |
2,810 |
09-09-2018, 03:31 AM |
|
|
Thread: Can not crack some example of hashes
Post: RE: Can not crack some example of hashes
Do you get any errors or warnings? What final feedback do you get from hashcat? |
|
royce |
hashcat
|
2 |
2,190 |
09-12-2018, 08:49 AM |
|
|
Thread: Thanks
Post: RE: Thanks
Got your back, Jack! Least we can do is provide top cover while you do the hard part. :) |
|
royce |
User Contributions
|
2 |
3,034 |
10-11-2018, 09:18 PM |
|
|
Thread: Installing a new Intel CPU runtime for OpenCL leads to a duplicate CPU platform
Post: RE: Installing a new Intel CPU runtime for OpenCL ...
|
royce |
hashcat
|
2 |
2,219 |
10-29-2018, 04:58 PM |
|
|
Thread: MS Office 2019 hashes
Post: RE: MS Office 2019 hashes
According to this John the Ripper pull request (https://github.com/magnumripper/JohnTheRipper/pull/3460) from @dhiru, they're the same. |
|
royce |
General Talk
|
2 |
2,622 |
11-14-2018, 05:53 PM |
|
|
Thread: Help with hash
Post: RE: Help with hash
Hashcat only supports CRC-32 at this writing.
Code:
--
$ hashcat --help | grep -i crc
11500 | CRC32 | Checksums
--
|
|
royce |
hashcat
|
2 |
2,351 |
11-18-2018, 07:33 PM |
|
|
Thread: How to configure a thin brute force in hashcat?
Post: RE: How to configure a thin brute force in hashcat...
Hashcat won't do this today.
You might be able to simulate it with John the Ripper's "single" mode, by creating an artificial shadow file, with the expected password in the username field. |
|
royce |
hashcat
|
2 |
2,124 |
12-08-2018, 11:54 PM |
|
|
Thread: Cracking a Truecrypt Container
Post: RE: Cracking a Truecrypt Container
That's hashcat mode 6223 (where 3 = "all" (all three algorithms)):
Code:
--
62XY | TrueCrypt | Full-Disk Encryption (FDE)
...
�... |
|
royce |
hashcat
|
2 |
3,013 |
01-27-2019, 10:30 PM |
|
|
Thread: Hashrate
Post: RE: Hashrate
https://hashcat.net/faq/morework |
|
royce |
hashcat
|
2 |
1,759 |
02-04-2019, 07:39 AM |
|
|
Thread: Migrating from Passware to Hashcat (need guidance and opinion of experts here)
Post: RE: Migrating from Passware to Hashcat (need guida...
Switching to hashcat, you will definitely be able to get a lot more performance out of your hardware for a number of hash types, but it comes at a price: less point-and-click automation. You'll need t... |
|
royce |
hashcat
|
2 |
2,352 |
02-06-2019, 07:40 AM |
|
|
Thread: Veracrypt with keyfile
Post: RE: Veracrypt with keyfile
Sounds like it's a passphrase, and you know the wordlist, but not the order.
princeprocessor could be used to generate all possible combinations of words. You may need to alter princeprocessor's so... |
|
royce |
hashcat
|
2 |
1,630 |
02-25-2019, 07:20 PM |
|
|
Thread: How does PCIE x1 affect speed?
Post: RE: How does PCIE x1 affect speed?
https://hashcat.net/wiki/doku.php?id=frequently_asked_questions#does_the_pci-express_speed_have_any_influence_on_cracking_speed |
|
royce |
Hardware
|
2 |
2,359 |
03-11-2019, 04:26 PM |
|
|
Thread: Separator unmatched when using example hash
Post: RE: Separator unmatched when using example hash
Hashes containing '$' need to be enclosed in single quotes on the Unix commandline. This is because $[string] is a way to do variable substitution in bash and related shells.
Once you fix that, you ... |
|
royce |
hashcat
|
2 |
8,713 |
03-16-2019, 08:10 PM |
|
|
Thread: hashcat do not work android linux ?
Post: RE: hashcat do not work android linux ?
There appears to be no OpenCL on this platform. OpenCL is required. |
|
royce |
hashcat
|
2 |
1,739 |
03-31-2019, 05:10 PM |
|
|
Thread: Hashcat self-destructs (Windows)
Post: RE: Hashcat self-destructs (Windows)
Ah, so it was previously running, and then it got overwritten somehow?
My first instinct is to say that it's almost certainly due to either a non-hashcat-supplied script with a bug in it, or some o... |
|
royce |
hashcat
|
2 |
1,561 |
04-06-2019, 05:09 PM |
|
|
Thread: Jetson Nano Benchmarks
Post: RE: Jetson Nano Benchmarks
Hey, awesome - a nice start to a new (retro?) era for hashcat! |
|
royce |
Hardware
|
2 |
2,880 |
05-14-2019, 10:47 PM |
|
|
Thread: I'm using Windows - where does combinator.exe write out to?
Post: RE: I'm using Windows - where does combinator.exe ...
The canonical way to do this is simply pipe the output of combinator to hashcat itself, so you don't have to store the result anywhere.
combinator list1 list2 | hashcat ... |
|
royce |
hashcat
|
2 |
1,064 |
08-14-2019, 02:35 AM |
|
|
Thread: scrypt hash format
Post: RE: scrypt hash format
Example method - script by atom.
Code:
--
#!/usr/bin/perl
use strict;
use warnings;
use MIME::Base64;
while (my $line = )
{
chomp $line;
my @data = split '\$', $line;
if ($data[5] ne 64)
... |
|
royce |
hashcat
|
2 |
1,189 |
08-14-2019, 04:15 PM |
|
|
Thread: Custom mask - brute force 12 length passwords with 1 capital letter, 1 number
Post: RE: Custom mask - brute force 12 length passwords ...
There's no single mask. You have to generate a *list of masks*.
You can do this with policygen from the PACK toolkit.
https://security.stackexchange.com/questions/158956/bruteforce-with-hashcat-... |
|
royce |
hashcat
|
2 |
1,220 |
08-18-2019, 06:24 PM |