Search Results
|
Post |
Author |
Forum |
Replies |
Views |
Posted
[asc]
|
|
|
Thread: tips on cracking SHA1 hash
Post: RE: tips on cracking SHA1 hash
Quote:
--
SHA1 hash with salt
--
First, choose the right mode, speed is not the same for all:
Code:
--
110 sha1($pass.$salt)
120 sha1($salt.$pass)
130 sha1(utf16le($pass).$salt)
140 sha1($salt.utf1... |
|
Mem5 |
hashcat
|
3 |
396 |
09-24-2020, 10:10 AM |
|
|
Thread: DECRYPTUM
Post: RE: DECRYPTUM
Can"t wait to see 3090 benchmarks ;) |
|
Mem5 |
Hardware
|
12 |
1,217 |
09-12-2020, 02:22 PM |
|
|
Thread: Recovered a 7z password with hashcat, but it's not the right one
Post: RE: Recovered a 7z password with hashcat, but it's...
Can you compare the resulting hash with 7z2john.py to check it's the same? |
|
Mem5 |
General Talk
|
6 |
855 |
08-28-2020, 11:34 PM |
|
|
Thread: I can't use hashcat
Post: RE: I can't use hashcat
You have a driver issue.
I recommend to install CUDA Toolkit v11.0 https://developer.nvidia.com/cuda-downloads |
|
Mem5 |
hashcat
|
4 |
534 |
08-24-2020, 11:49 PM |
|
|
Thread: Microsoft Azure Ubuntu. Problem with hashcat
Post: RE: Microsoft Azure Ubuntu. Problem with hashcat
|
Mem5 |
hashcat
|
12 |
1,182 |
08-16-2020, 03:16 PM |
|
|
Thread: Microsoft Azure Ubuntu. Problem with hashcat
Post: RE: Microsoft Azure Ubuntu. Problem with hashcat
As written: update CUDA (current is 11.0)
VeraCrypt is kinda secure, so yes it's "slow".
But you can get around 2073 H/s with a 2080 Ti
GPU K80 is very slow for all algorithms. Get a better GPU =) |
|
Mem5 |
hashcat
|
12 |
1,182 |
08-16-2020, 11:30 AM |
|
|
Thread: Microsoft Azure Ubuntu. Problem with hashcat
Post: RE: Microsoft Azure Ubuntu. Problem with hashcat
Code:
--
apt-get -y install p7zip-full
wget "https://hashcat.net/files/hashcat-6.1.1.7z"
7z x hashcat-6.1.1.7z
cd hashcat-6.1.1
./hashcat.bin -I
--
|
|
Mem5 |
hashcat
|
12 |
1,182 |
08-15-2020, 08:58 PM |
|
|
Thread: Microsoft Azure Ubuntu. Problem with hashcat
Post: RE: Microsoft Azure Ubuntu. Problem with hashcat
'modules' directory should not be under /usr/bin
Try extracting hashcat into ~/
and run ~/hashcat-6.1.1/hashcat.bin -I |
|
Mem5 |
hashcat
|
12 |
1,182 |
08-14-2020, 11:50 PM |
|
|
Thread: DES weird result
Post: DES weird result
Hi,
According to https://hashcat.net/wiki/doku.php?id=example_hashes (https://hashcat.net/wiki/doku.php?id=example_hashes) , DES sample hash is "hashcat1".
But I find "hashcau0"
Why?
Thanks!
C... |
|
Mem5 |
hashcat
|
1 |
327 |
08-03-2020, 09:00 PM |
|
|
Thread: I ran hashcat with a bunch of *.16800 hash files, what is best way to see results?
Post: RE: I ran hashcat with a bunch of *.16800 hash fil...
- Use -o results.txt to write results to this file.
- Now, you can use --show to print the already cracked passwords.
- printing contents like "cat hashcat.potfile" can also do the job
Finally, -... |
|
Mem5 |
hashcat
|
4 |
727 |
07-31-2020, 10:28 AM |
|
|
Thread: Need help with Intel CPU and NVIDIA GPU
Post: RE: Got it running, kind of
FPTHHrw6mKhNZwL6 Wrote: (07-30-2020, 04:19 PM)
--
./hashcat.bin -a 3 -m 1400 Guess.hash -1 123456789 -2 0123456789- -3 abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789- -4 abcdefghijklm... |
|
Mem5 |
hashcat
|
43 |
4,380 |
07-30-2020, 06:04 PM |
|
|
Thread: slow using rules
Post: RE: slow using rules
philsmd Wrote: (07-28-2020, 09:07 PM)
--
-S (..) makes sense for "not too slow" hashes and were you didn't provide too much password candidates in the dict for full acceleration
--
Are you able to... |
|
Mem5 |
hashcat
|
7 |
1,051 |
07-29-2020, 12:22 PM |
|
|
Thread: Need help with Intel CPU and NVIDIA GPU
Post: RE: Need help with Intel CPU and NVIDIA GPU
Which OS ? Which GPU ? CUDA or OpenCL ?
This is a good start : https://www.google.com/search?q=nvidia+driver |
|
Mem5 |
hashcat
|
43 |
4,380 |
07-29-2020, 12:10 PM |
|
|
Thread: Is it hashfile.txt or example.hash
Post: RE: Is it hashfile.txt or example.hash
You can give the name and extension you want.
Commonly it's called hashes.txt because it's a list of hashes in a t(e)xt format..
But you can rename it baby.exe it will be the same for hashcat. |
|
Mem5 |
hashcat
|
4 |
673 |
07-29-2020, 12:07 PM |
|
|
Thread: hashcat v6.1.0
Post: RE: hashcat v6.1.0
|
Mem5 |
hashcat
|
10 |
4,017 |
07-28-2020, 07:56 PM |
|
|
Thread: slow using rules
Post: RE: slow using rules
11300 (bitcoin) is slow, you can get around 11"665 H/s with a RTX 2080 Ti (source (https://www.onlinehashcrack.com/tools-benchmark-hashcat-gtx-1080-ti-1070-ti-rtx-2080-ti.php))
Add switch -w 4 to you... |
|
Mem5 |
hashcat
|
7 |
1,051 |
07-28-2020, 07:51 PM |
|
|
Thread: Need assistance with command parameters.
Post: RE: Need assistance with command parameters.
Words from a language dictionary?
If yes, I would:
1) extract all words starting from 't' or 'T' => use grep
Code:
--
# sample wordlist t.dic
tabasco
table
--
2) Combine these words to produce n-tupl... |
|
Mem5 |
hashcat
|
2 |
463 |
07-28-2020, 12:47 PM |
|
|
Thread: ethereum scrypt
Post: RE: ethereum scrypt
philsmd Wrote: (07-27-2020, 08:37 AM)
--
you shouldn't send these types of hashes (...) especially true for several cryptocurrency "hashes".
--
Could you let us know which 'hashes' are send-able an... |
|
Mem5 |
hashcat
|
4 |
704 |
07-27-2020, 11:26 AM |
|
|
Thread: Hashcat settings - explanation
Post: RE: Hashcat settings - explanation
Hashcat tries each line from your wordlist.
So it will test "ttaabbcc" first, then "BI", then "123456789", etc.
"BI" will be skipped as the WPA password must be greater or equal to 8.
You need to... |
|
Mem5 |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
6 |
1,344 |
07-26-2020, 12:04 PM |
|
|
Thread: Charsets Order and rockyou Mask files
Post: RE: Charsets Order and rockyou Mask files
have you tried
Quote:
--
--markov-disable | | Disables markov-chains, emulates classic brute-force
--
|
|
Mem5 |
hashcat
|
2 |
564 |
07-23-2020, 08:36 AM |