Search Results
|
Post |
Author |
Forum |
Replies
[asc]
|
Views |
Posted |
|
|
Thread: 1Password Competition
Post: RE: 1Password Competition
It's after the official period of the challenge, but since people could theoretically keep working on it ...
If you post the syntax you were using, we might be able to help. The hashcat hash mode i... |
|
royce |
General Talk
|
9 |
7,198 |
05-12-2018, 07:22 PM |
|
|
Thread: 1Password Competition
Post: RE: 1Password Competition
Yep. The only way to make real progress on it would be if multiple teams with lots of cards all cooperated. Which would itself be pretty cool, IMO. |
|
royce |
General Talk
|
9 |
7,198 |
05-14-2018, 04:45 PM |
|
|
Thread: 1Password Competition
Post: RE: 1Password Competition
Proof of concept:
Code:
--
# Convert salt and hash from hex to raw and then to base64:
$ echo -n '00bb202b205f064e30f6fae101162a2e' | xxd -p -r | base64
ALsgKyBfBk4w9vrhARYqLg==
$ echo -n '919... |
|
royce |
General Talk
|
9 |
7,198 |
05-13-2018, 09:42 PM |
|
|
Thread: Mining Rig for hashcat
Post: RE: Mining Rig for hashcat
I'd also run a benchmark (hashcat -b -m 0) to quickly determine if it's a setup problem vs an attack methodology problem. If your driver/etc are set up correctly, a benchmark should peg all available ... |
|
royce |
Hardware
|
9 |
6,982 |
05-18-2018, 04:45 AM |
|
|
Thread: Use with Xeon Phi
Post: RE: Use with Xeon Phi
Search the forum for "Xeon phi" - you'll find a few hits, but focus on the ones 2016 and later (that's when support was added, IIRC). Also IIRC the performance is not stellar. |
|
royce |
hashcat
|
9 |
6,679 |
06-07-2018, 06:29 PM |
|
|
Thread: Use with Xeon Phi
Post: RE: Use with Xeon Phi
I don't think there's anything special required. If the OS, GPU drivers, and OpenCL are installed properly and supported, it should Just Workâ˘. :) |
|
royce |
hashcat
|
9 |
6,679 |
06-08-2018, 04:25 AM |
|
|
Thread: Use with Xeon Phi
Post: RE: Use with Xeon Phi
That's not a Phi problem; that's an OS problem. What OS is it? |
|
royce |
hashcat
|
9 |
6,679 |
06-11-2018, 05:19 PM |
|
|
Thread: No devices found/left
Post: RE: No devices found/left
Try hashcat -I to show OpenCL info. If there isn't any, then there is indeed something wrong with the driver install. You may also want to review https://hashcat.net/faq/wrongdriver to see if it can h... |
|
royce |
hashcat
|
9 |
7,547 |
01-25-2019, 07:08 AM |
|
|
Thread: Kubuntu 18.10 Nvidia GTX 1050 OpenCL compatibility
Post: RE: Kubuntu 18.10 Nvidia GTX 1050 OpenCL compatibi...
You need to use the native NVIDIA drivers and their associated OpenCL.
This guide for driver baselining and reinstallation may be helpful.
https://hashcat.net/faq/wrongdriver
CUDA is not nec... |
|
royce |
hashcat
|
9 |
4,191 |
01-26-2019, 01:54 AM |
|
|
Thread: Hashcat says its starting and then nothing happens
Post: RE: Hashcat says its starting and then nothing hap...
By default, cracks will be written to hashcat.potfile - you don't need -o. If you use -o, hashcat assumes that you're semi-automating something and a lot of the output is suppressed. |
|
royce |
hashcat
|
9 |
3,824 |
02-10-2019, 08:33 AM |
|
|
Thread: Bruteforce with descending characters - zzz,zzy,zzx
Post: RE: Bruteforce with descending characters - zzz,zz...
By default, hashcat doesn't start from 'aaaaa' - instead, it starts with sets of characters that appear most frequently in common passwords, called Markov mode. For example, if you try '?d?d?d?d?d', i... |
|
royce |
hashcat
|
9 |
1,576 |
04-26-2020, 02:42 AM |
|
|
Thread: Bruteforce with descending characters - zzz,zzy,zzx
Post: RE: Bruteforce with descending characters - zzz,zz...
One use case I can think of is when you intend to bruteforce an entire keyspace, and want to "meet in the middle" by having one system work forwards, and the other system work backwards. This would wo... |
|
royce |
hashcat
|
9 |
1,576 |
04-26-2020, 03:33 PM |
|
|
Thread: Bruteforce with descending characters - zzz,zzy,zzx
Post: RE: Bruteforce with descending characters - zzz,zz...
Well, my point was that if you could just start a run from the other end, you wouldn't have to calculate keyspace at all (for the case of two attack systems) |
|
royce |
hashcat
|
9 |
1,576 |
04-26-2020, 04:02 PM |
|
|
Thread: Bruteforce with descending characters - zzz,zzy,zzx
Post: RE: Bruteforce with descending characters - zzz,zz...
From the PM, it looks like you'd benefit from doing what philsmd described - using the 'skip' and 'limit' options to split the job across two nodes.
philsmd, I'm actually not aware of a simple tutori... |
|
royce |
hashcat
|
9 |
1,576 |
04-26-2020, 04:48 PM |
|
|
Thread: Cisco IOS MD5 BruteForce Mask
Post: RE: Cisco IOS MD5 BruteForce Mask
Assuming that it's this type of hash:
Code:
--
$ openssl passwd -1 -salt 0000 -table password
password $1$0000$aWwcZQIpZ/gD70N/fOUeh0
--
... then you need to specify the hash type (-m 500 = Cisco-... |
|
royce |
General Help
|
8 |
29,656 |
04-14-2015, 05:32 PM |
|
|
Thread: Cisco IOS MD5 BruteForce Mask
Post: RE: Cisco IOS MD5 BruteForce Mask
This looks normal. Brute force automatically starts with short masks and then moves on to longer ones. While it's moving through the short masks, they're too short to really make the GPUs work hard, ... |
|
royce |
General Help
|
8 |
29,656 |
04-14-2015, 08:44 PM |
|
|
Thread: Special characters in mask
Post: RE: Special characters in mask
Based on your OS/shell, you'll need to escape the spaces. |
|
royce |
Old oclHashcat Support
|
8 |
13,344 |
04-14-2015, 08:47 PM |
|
|
Thread: office excel 2010 hash
Post: RE: office excel 2010 hash
What command lines have you tried, and what errors were geenrtaed? |
|
royce |
General Help
|
8 |
12,521 |
04-14-2015, 08:54 PM |
|
|
Thread: Special characters in mask
Post: RE: Special characters in mask
https://lmgtfy.com/?q=windows+8.1+cmd+escape+spaces |
|
royce |
Old oclHashcat Support
|
8 |
13,344 |
04-14-2015, 10:04 PM |
|
|
Thread: Special characters in mask
Post: RE: Special characters in mask
illcare, I meant it in good humor. That being said, there's a little truth in all humor. If you try random things without research, do not be surprised when they do not work. Wishful thinking does ... |
|
royce |
Old oclHashcat Support
|
8 |
13,344 |
04-15-2015, 05:24 AM |