Search Results
|
Post |
Author |
Forum |
Replies |
Views
[asc]
|
Posted |
|
|
Thread: HEXed dictionary
Post: RE: HEXed dictionary
there are at least 2 ways to use "hex" passwords within dictionaries in hashcat:
1. use --hex-wordlist
2. use $HEX[] within the lines
these options are very similar and different at the same time... |
|
philsmd |
hashcat
|
3 |
1,002 |
01-28-2020, 01:56 PM |
|
|
Thread: What is pw_len of the pw type ?
Post: RE: What is pw_len of the pw type ?
yes u32[] means that each item consist of 4 bytes, i.e. 64 * 4 = 256 maximum password length
pw_len is the length in bytes, of course (everything else wouldn't make sense). each additional characte... |
|
philsmd |
hashcat
|
2 |
1,001 |
02-26-2020, 01:14 PM |
|
|
Thread: pattern mask
Post: RE: pattern mask
Well, this is a very specific task (insert a word of length 5, g00se, into a mask of length 12, at each and every position), it's probably much more easier to just write all combination down or use a ... |
|
philsmd |
hashcat
|
4 |
998 |
04-18-2020, 08:19 AM |
|
|
Thread: N00b can't get hashcat.exe file with extract error from Keka on MacOS
Post: RE: N00b can't get hashcat.exe file with extract e...
The best/easiest thing for macOS (since we can't really cross-compile the macOS binaries for every macOS version etc), is to just use git and compile it yourself.
i.e. with brew install the most im... |
|
philsmd |
hashcat
|
4 |
990 |
05-23-2020, 08:46 AM |
|
|
Thread: N00b can't get hashcat.exe file with extract error from Keka on MacOS
Post: RE: N00b can't get hashcat.exe file with extract e...
these 2 commands are not the same
Code:
--
hashcat -a 0 -m 14800 -o hash.txt passwords4.txt
--
vs
Code:
--
./hashcat -a 0 -m 14800 -o hash.txt passwords4.txt
--
"./hashcat" is the only o... |
|
philsmd |
hashcat
|
4 |
990 |
05-23-2020, 07:50 PM |
|
|
Thread: Problem with cracking Office password that contains custom character
Post: RE: Problem with cracking Office password that con...
this question has already been answered dozens of times:
https://hashcat.net/forum/thread-8456.html
https://github.com/hashcat/hashcat/blob/8207af471cee80012d370d551653d28516abf0c1/docs/limits.txt... |
|
philsmd |
hashcat
|
13 |
988 |
09-12-2020, 06:24 PM |
|
|
Thread: Problem with cracking Office password that contains custom character
Post: RE: Problem with cracking Office password that con...
if you modify the kernel code such that it's not doing the same thing as it is supposed to do (among others, convert the passwords to utf16le within the kernel), then and only then you need to use thi... |
|
philsmd |
hashcat
|
13 |
988 |
09-13-2020, 02:32 PM |
|
|
Thread: Problem with cracking Office password that contains custom character
Post: RE: Problem with cracking Office password that con...
encoding is difficult
and without understanding it, you probably shouldn't make these source code changes and do such advanced attacks. We have several confirmations of users that moved the encodin... |
|
philsmd |
hashcat
|
13 |
988 |
09-13-2020, 04:45 PM |
|
|
Thread: Problem with cracking Office password that contains custom character
Post: RE: Problem with cracking Office password that con...
why don't you just explain what you did and how you run it. That might reveal the problem you are facing much faster:
Code:
--
hashcat.exe -a 3 -m 9600 --hex-charset --self-test-disable hash.txt 0... |
|
philsmd |
hashcat
|
13 |
988 |
09-14-2020, 02:50 PM |
|
|
Thread: Problem with cracking Office password that contains custom character
Post: RE: Problem with cracking Office password that con...
Code:
--
--encoding-to utf16le
--
and this of course only works in a dictionary attack (-a 0), if you want to use -a 3 you would need to use the correct bytes with --hex-charset
if you want ... |
|
philsmd |
hashcat
|
13 |
988 |
09-12-2020, 07:27 PM |
|
|
Thread: Problem with cracking Office password that contains custom character
Post: RE: Problem with cracking Office password that con...
unfortunately, there is no way to fully get it without trying to learn about character encoding and what utf16le means etc.
There is no shortcut. You need to understand the way characters are represe... |
|
philsmd |
hashcat
|
13 |
988 |
09-14-2020, 05:19 PM |
|
|
Thread: Benchmarks and Password per second
Post: RE: Benchmarks and Password per second
(kilo, mega, giga, tera) hashes per second
several algorithms do not have iterations (raw hashes for instance). The iteration count is mentioned separately, just try it yourself:
Code:
--
hashc... |
|
philsmd |
hashcat
|
3 |
983 |
04-24-2020, 08:41 AM |
|
|
Thread: Hash 'hashes': Token length exception No hashes loaded.
Post: RE: Hash 'hashes': Token length exception No hashe...
the command should be:
Code:
--
./hashcat64.bin -a 0 -m 0 myhash mydict
--
both files myhash and mydict need to exist
the error message that you got, says that the file "hashes" can't be ... |
|
philsmd |
hashcat
|
1 |
976 |
02-01-2020, 08:09 AM |
|
|
Thread: Hashcat help with email combining to password.
Post: RE: Hashcat help with email combining to password.
short answer: --show should never be used while you are cracking (it's used afterwards, when already cracked)
see: https://hashcat.net/faq#how_can_i_show_previously_cracked_passwords_and_output_the... |
|
philsmd |
hashcat
|
3 |
971 |
04-02-2020, 12:17 PM |
|
|
Thread: Veracrypt algorithm identification
Post: RE: Veracrypt algorithm identification
for very few hash types only one "hash" can be loaded at the same time. This is also true for VeraCrypt since (in theory, but normally you extract it anyway or work with a backup) you can directly loa... |
|
philsmd |
hashcat
|
5 |
970 |
06-26-2020, 01:20 PM |
|
|
Thread: Veracrypt algorithm identification
Post: RE: Veracrypt algorithm identification
no, in general it's not possible. The architecture choice / design of VeraCrypt itself does not allow seeing what algos are being used.
That said, it's very easy to see a bootloader... i.e. if the ... |
|
philsmd |
hashcat
|
5 |
970 |
06-25-2020, 11:35 AM |
|
|
Thread: amd vs nvidia
Post: RE: amd vs nvidia
are you talking about a busy CPU core ? This only happens with Nvidia running OpenCL kernels.
You could try to use the new beta with CUDA: https://hashcat.net/beta/ and cuda from https://developer.... |
|
philsmd |
hashcat
|
3 |
968 |
05-18-2020, 11:00 PM |
|
|
Thread: why does mask ?d work but mask ?a not?
Post: RE: why does mask ?d work but mask ?a not?
what hardware do you have ? what driver version do you use ?
output of hashcat -I and maybe clinfo.exe would also be great.
Do you get any errors ? You are not using --force, right ?
all comman... |
|
philsmd |
hashcat
|
10 |
965 |
08-27-2020, 08:15 AM |
|
|
Thread: why does mask ?d work but mask ?a not?
Post: RE: why does mask ?d work but mask ?a not?
try to add this to your command:
-D 1 |
|
philsmd |
hashcat
|
10 |
965 |
08-27-2020, 08:44 PM |
|
|
Thread: why does mask ?d work but mask ?a not?
Post: RE: why does mask ?d work but mask ?a not?
did you try with other hash types ?
do they work correctly with your Intel GPU (windows operating system) ? |
|
philsmd |
hashcat
|
10 |
965 |
08-28-2020, 09:06 AM |