Search Results
|
Post |
Author |
Forum
[asc]
|
Replies |
Views |
Posted |
|
|
Thread: 8gb wordlist for cracking a Rar3
Post: RE: 8gb wordlist for cracking a Rar3
the command should look something like:
Code:
--
hashcat -m 12500 -a 0 hash.txt dict.txt
--
that means that you also need to specify the hash file, not just the word list
BTW: the hash form... |
|
philsmd |
hashcat
|
2 |
4,688 |
07-25-2018, 07:15 AM |
|
|
Thread: Getting 0H/S and 0 progress
Post: RE: Getting 0H/S and 0 progress
Code:
--
hashcat -m 7100 -a 0 hash.txt dict.txt
--
|
|
philsmd |
hashcat
|
3 |
6,120 |
07-25-2018, 07:25 PM |
|
|
Thread: Noob - Understanding hashcat input format
Post: RE: Noob - Understanding hashcat input format
-m 10900 = PBKDF2-HMAC-SHA256 has both hash and salt in base64. You can just look at the examples here: https://hashcat.net/wiki/doku.php?id=example_hashes or use a command like this: hashcat -m 10900... |
|
philsmd |
hashcat
|
1 |
2,965 |
08-03-2018, 06:05 PM |
|
|
Thread: how to take hash with winrar?
Post: RE: how to take hash with winrar?
For -m 12500 = RAR3-hp the hashes must start with $RAR3$*0*
if you have a $RAR3$*1* hash (i.e. a rar file without encrypted file names) instead, it is not supported, see https://github.com/hashcat... |
|
philsmd |
hashcat
|
8 |
11,898 |
08-06-2018, 05:51 PM |
|
|
Thread: PDF Hash
Post: RE: PDF Hash
the file named test.hash must exist within your file system and the path to that file must be correct.
Hashcat can't find your file |
|
philsmd |
hashcat
|
9 |
6,365 |
08-08-2018, 11:46 AM |
|
|
Thread: Why a brute-force attack on RAR3-HP hash fails?
Post: RE: Why a brute-force attack on RAR3-HP hash fails...
The hash format can be double-checked by looking at this page https://hashcat.net/wiki/example_hashes or with hashcat itself e.g. hashcat -m 12500 --example-hashes
The hash format should not contai... |
|
philsmd |
hashcat
|
1 |
1,769 |
08-18-2018, 06:43 PM |
|
|
Thread: Hahcat is using weird random combinations instead of the files on dicitonary
Post: RE: Hahcat is using weird random combinations inst...
$HEX[2474406d66307264210d40313233] means that hashcat is trying to use the string 2474406d66307264210d40313233 in hexadecimal notation (it's in hexadecimal because there are some non-printable or "esc... |
|
philsmd |
hashcat
|
3 |
2,643 |
07-26-2018, 07:37 AM |
|
|
Thread: Hahcat is using weird random combinations instead of the files on dicitonary
Post: RE: Hahcat is using weird random combinations inst...
\r, 0x0d and '\015' are all just different forms of representing the carriage return character. Therefore yes I'm sure that it's \r, and *you* also remove the same character with your tr command.
I... |
|
philsmd |
hashcat
|
3 |
2,643 |
07-26-2018, 09:40 AM |
|
|
Thread: can't get hashcat working!! ubuntu 16.04 w/ amd 7970s
Post: RE: can't get hashcat working!! ubuntu 16.04 w/ am...
it's a pretty old GPU already. Rocm doesn't seem to support it at all: see https://rocm.github.io/hardware.html . It seems that currencty only some new cards are supported (like the RX460, RX470, RX48... |
|
philsmd |
hashcat
|
3 |
3,426 |
07-28-2018, 04:08 PM |
|
|
Thread: CPU v GPU configuration
Post: RE: CPU v GPU configuration
hashcat currently supports these attack modes:
-a 0 dict.txt
-a 1 dict1.txt dict2.txt
-a 3 ?a?a?a?a?a
-a 6 dict.txt ?a?a?a?a?a
-a 7 ?a?a?a?a?a dict.txt
you did use NONE (including the mask and... |
|
philsmd |
hashcat
|
5 |
4,468 |
08-16-2018, 08:26 AM |
|
|
Thread: Issue with --show and colon character
Post: RE: Issue with --show and colon character
I think you are mixing up the outfile (--outfile or short -o) with the hashcat.potfile. The former will change whenever you use --outfile-autohex-disable, but for the latter the --outfile-autohex-disa... |
|
philsmd |
hashcat
|
5 |
3,731 |
08-19-2018, 06:12 PM |
|
|
Thread: md5(md5($pass).$salt)
Post: RE: md5(md5($pass).$salt)
This is the algo used by vbulletin, see the --help output:
hashcat supports:
-m 2611 = vBulletin < v3.8.5
and
-m 2711 = vBulletin >= v3.8.5
the difference is mainly the supported salt length (s... |
|
philsmd |
hashcat
|
1 |
2,176 |
08-20-2018, 09:48 AM |
|
|
Thread: --show takes forever to finish
Post: RE: --show takes forever to finish
it depends mainly on the size of the hashcat.potfile and of course also to some extend on the hashes.txt file (note there can be cracks assigned to several users, especially if unsalted hashes are use... |
|
philsmd |
hashcat
|
6 |
3,802 |
08-21-2018, 10:33 PM |
|
|
Thread: Issue with --show and colon character
Post: RE: Issue with --show and colon character
I think you indeed found the main root of the problem.
The potfile read/write functions should ignore the --outfile-autohex setting.
See https://github.com/hashcat/hashcat/blob/fe04ccc1fd61b040ebee5... |
|
philsmd |
hashcat
|
5 |
3,731 |
08-22-2018, 02:57 PM |
|
|
Thread: --show takes forever to finish
Post: RE: --show takes forever to finish
what's your memory usage and CPU usage during the --show --username run ? High memory, high CPU?
We might need to troubleshoot this in detail but I guess we need to have the files (or similar files... |
|
philsmd |
hashcat
|
6 |
3,802 |
08-22-2018, 05:07 PM |
|
|
Thread: Issue with --show and colon character
Post: RE: Issue with --show and colon character
hmm, this is an interesting case and the reason why it's behaving like this is that hashcat only checks for the last "separator" in the potfile, see: https://github.com/hashcat/hashcat/blob/067ffa9d64... |
|
philsmd |
hashcat
|
5 |
3,731 |
08-19-2018, 11:47 AM |
|
|
Thread: --show takes forever to finish
Post: RE: --show takes forever to finish
I just tested with a hash file and potfile with 1000000 entries and it's very fast on my system.
Maybe you can do the same and report back.
This is how I generated the lists:
Code:
--
#!/usr/b... |
|
philsmd |
hashcat
|
6 |
3,802 |
08-23-2018, 01:33 PM |
|
|
Thread: --increment option
Post: RE: --increment option
yes, your hcmask file should look like this:
Code:
--
?l
?l?d
?l?l?d
?l?l?l?d
?l?l?l?l?d
?l?l?l?l?l?d
?l?l?l?l?l?l?d
?l?l?l?l?l?l?l?d
?l?l?l?l?l?l?l?l?d
--
references:
https://hashcat... |
|
philsmd |
hashcat
|
2 |
2,441 |
08-24-2018, 03:38 PM |
|
|
Thread: Replace rule - but not all at once
Post: RE: Replace rule - but not all at once
see the rules page on the wiki: https://hashcat.net/wiki/doku.php?id=rule_based_attack#using_p_nth_instance_of_a_character_with_positional_rules |
|
philsmd |
hashcat
|
4 |
3,115 |
08-28-2018, 05:03 PM |
|
|
Thread: NTLM vs WPA/WPA2 cracking
Post: RE: NTLM vs WPA/WPA2 cracking
-m 2500 = WPA/WPA2 has a minimum password length of 8
hashcat will reject all input words immediately if they are < 8 (even before the rules are applied, because the rule engine is on-GPU and doesn't... |
|
philsmd |
hashcat
|
19 |
9,937 |
08-30-2018, 07:25 PM |