Search Results
|
Post
[desc]
|
Author |
Forum |
Replies |
Views |
Posted |
|
|
Thread: [solved] How to remove numbers from dictionary .txt or .dic
Post: RE: How to remove numbers from dictionary .txt or ...
msys/mingw is your friend |
|
undeath |
General Help
|
7 |
12,710 |
02-14-2013, 04:25 PM |
|
|
Thread: How to restore haschat after reboot and please help with GETH wallet decrypted
Post: RE: How to restore haschat after reboot and please...
just run hashcat64.exe --restore with no additional arguments |
|
undeath |
hashcat
|
5 |
4,143 |
03-20-2018, 01:39 PM |
|
|
Thread: How to restore haschat after reboot and please help with GETH wallet decrypted
Post: RE: How to restore haschat after reboot and please...
are you running the command in the same folder as you were running the attack in? |
|
undeath |
hashcat
|
5 |
4,143 |
03-20-2018, 01:46 PM |
|
|
Thread: How to run in windows 7?
Post: RE: How to run in windows 7?
|
undeath |
Very old oclHashcat-plus Support
|
3 |
7,473 |
04-22-2012, 03:39 PM |
|
|
Thread: How to save all generated hashes to file?
Post: RE: How to save all generated hashes to file?
hashcat does not provide an interface for such a thing. |
|
undeath |
hashcat
|
4 |
4,469 |
08-16-2017, 07:24 PM |
|
|
Thread: How to save all generated hashes to file?
Post: RE: How to save all generated hashes to file?
ftfy
MrMeeseeks Wrote: (08-17-2017, 09:22 AM)
--
Bash one liner for the win:
Code:
--
while read -r line; do echo -n "$line" | sha256sum | cut -d " " -f 1; done < ./plains > hashes
--
--
|
|
undeath |
hashcat
|
4 |
4,469 |
08-17-2017, 10:41 AM |
|
|
Thread: How to set the minimum password length?
Post: RE: How to set the minimum password length?
You can specify multiple rule files and hashcat will join every rule of the first file with every rule of the second file and so on. So you can just specify a rule file containing the rule ">7" and th... |
|
undeath |
hashcat
|
5 |
7,345 |
08-07-2017, 09:47 PM |
|
|
Thread: How To Update Hashcat On The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali)?
Post: RE: How To Update Hashcat On The-Distribution-Whic...
Mathew Wrote: (03-25-2015, 11:36 PM)
--
run the following:
Code:
--
apt-get update
--
--
This command will not update your system. To update you also have to run "apt-get upgrade". |
|
undeath |
Old hashcat Support
|
3 |
12,400 |
03-26-2015, 01:52 PM |
|
|
Thread: How to use checkpoint in hashcat beta (Windows)
Post: RE: How to use checkpoint in hashcat beta (Windows...
What do you mean by "not works"? What's happening? |
|
undeath |
hashcat
|
5 |
2,167 |
07-21-2019, 12:53 PM |
|
|
Thread: How to use dictionary input but first convert to sha256
Post: RE: How to use dictionary input but first convert ...
what the fuck did i just read?
edit: try
Code:
--
xargs -I_ sh -c 'echo -n "_" | sha256sum' |
|
undeath |
General Help
|
1 |
4,141 |
10-15-2014, 02:51 PM |
|
|
Thread: How to use gpu on bruteforcing SHA256(MD5('password'))
Post: RE: How to use gpu on bruteforcing SHA256(MD5('pas...
https://github.com/hashcat/hashcat/blob/master/tools/test.pl
you can also do
Code:
--
crunch [options] | perl tools/test.pl passthrough 0 | hashcat -m 1400 -w 3 hash.txt
--
|
|
undeath |
hashcat
|
9 |
3,421 |
07-13-2019, 12:34 PM |
|
|
Thread: how to use hashcat on widows 7 64 bit ( no GPU ,just CPU )
Post: RE: how to use hashcat on widows 7 64 bit ( no GPU...
read the EULA again and especially the very last sentence and make sure to understand every single word. |
|
undeath |
Old hashcat Support
|
1 |
5,636 |
07-26-2014, 11:28 AM |
|
|
Thread: How to use login for crack hash
Post: RE: How to use login for crack hash
separate the logins and put them into their own file. |
|
undeath |
General Help
|
3 |
5,541 |
11-26-2015, 03:08 AM |
|
|
Thread: htpasswd decrypt ?
Post: RE: htpasswd decrypt ?
apache's htpasswd support many password hashes, ranging from plain to DES-crypt to unix-md5 (and possibly other unix-* hashes) to apache ("apr") hashes. |
|
undeath |
Old oclHashcat Support
|
4 |
43,642 |
03-26-2014, 11:48 AM |
|
|
Thread: hybrid attack can't use all gpu power?
Post: RE: hybrid attack can't use all gpu power?
you can pipe in from another instance like this:
Code:
--
hashcat -a 6 wordlist.txt -1 dig_symbols.charset ?1?1?1?1?1?1 --increment --stdout | hashcat -m 11300 hash.txt
--
note that you won't be... |
|
undeath |
hashcat
|
5 |
1,885 |
08-15-2019, 11:03 PM |
|
|
Thread: Hybrid attack keyspace inconsistency
Post: RE: Hybrid attack keyspace inconsistency
The option name "keyspace" is misleading and isn't actually the keyspace. It's just some internal hashcat number.
Or to quote the FAQ entry you linked:
Quote:
--
hashcat's --keyspace is specifically... |
|
undeath |
hashcat
|
3 |
1,317 |
03-05-2020, 11:02 PM |
|
|
Thread: hybrid attack Netntlm too slow
Post: RE: hybrid attack Netntlm too slow
your are doing something weird. Why are you using -a6 with a 7 char mask when you're trying to crack a LM hash? The plaintext cannot be longer than 7 chars. -a6 is only fast if your left side has enou... |
|
undeath |
hashcat
|
12 |
6,451 |
10-26-2018, 03:35 PM |
|
|
Thread: hybrid attack Netntlm too slow
Post: RE: hybrid attack Netntlm too slow
see my edit above, piping (as you were already doing) is the correct approach. |
|
undeath |
hashcat
|
12 |
6,451 |
10-26-2018, 03:58 PM |
|
|
Thread: hybrid attack Netntlm too slow
Post: RE: hybrid attack Netntlm too slow
it should have used all the possibilities. You can check that by examining the output of the first command on its own. |
|
undeath |
hashcat
|
12 |
6,451 |
10-27-2018, 10:44 AM |
|
|
Thread: Hybrid attack workload increase incase of small dic
Post: RE: Hybrid attack workload increase incase of smal...
Depending on what hash mode you are using (or how many salts) you can increase the performance using -S |
|
undeath |
hashcat
|
5 |
3,508 |
12-21-2018, 12:36 PM |