Search Results
|
Post
[desc]
|
Author |
Forum |
Replies |
Views |
Posted |
|
|
Thread: I want to brute force incrementally with two digits appended
Post: RE: I want to brute force incrementally with two d...
You can use a .hcmask file for this (https://hashcat.net/wiki/mask_attack#hashcat_mask_files):
Code:
--
hashcat -m 0 -a 3 hash_file.txt mask_file.hcmask
--
content of the file "mask_file.hcmas... |
|
philsmd |
hashcat
|
1 |
2,173 |
04-04-2017, 06:55 PM |
|
|
Thread: i want to get mail:pass
Post: RE: i want to get mail:pass
This can be accomplished by using TWO steps (1. cracking, 2. --show):
https://hashcat.net/wiki/doku.php?id=frequently_asked_questions#how_can_i_show_previously_cracked_passwords_and_output_them_in_a_s... |
|
philsmd |
hashcat
|
5 |
4,961 |
10-15-2017, 04:19 PM |
|
|
Thread: Idea: Wordlist-creation from language-statistics
Post: RE: Idea: Wordlist-creation from language-statisti...
If I'm not totally mistaken, you basically describe how markov could help and yeah:
hashcat has built-in support for markov and it's enabled by default (see --help and hcstat2gen from hashcat-utils... |
|
philsmd |
General Talk
|
4 |
593 |
08-18-2020, 09:25 AM |
|
|
Thread: Idea: Wordlist-creation from language-statistics
Post: RE: Idea: Wordlist-creation from language-statisti...
there is only one disadvantage: the markov chain support is limited to the mask-based attack types (-a 3, and the mask part of -a 6, -a 7).
So if you want to run a dictionary (-a 0 for instance), h... |
|
philsmd |
General Talk
|
4 |
593 |
08-18-2020, 10:52 AM |
|
|
Thread: IIS http digest
Post: RE: IIS http digest
I think the MD5-sess "algorithm" could be a problem here, afaik we currently only support the "normal" "MD5" one.
see the differences here:
https://en.wikipedia.org/wiki/Digest_access_authenticatio... |
|
philsmd |
hashcat
|
5 |
3,180 |
11-19-2018, 07:07 PM |
|
|
Thread: IIS http digest
Post: RE: IIS http digest
yeah, there are basically 2 different algorithms, namely "MD5" vs "MD5-sess", and currently only MD5 is supported by hashcat.
The difference is basically that MD5-sess includes the nonce and client... |
|
philsmd |
hashcat
|
5 |
3,180 |
11-20-2018, 08:18 PM |
|
|
Thread: IKE file testcase for oclHashcat
Post: RE: IKE file testcase for oclHashcat
First of all, I am sure you've noticed that the forum adds newlines etc characters... So also the "show page source" feature of your browser includes some special characters (newline etc) in the strin... |
|
philsmd |
Very old oclHashcat-plus Support
|
13 |
28,017 |
04-16-2013, 03:36 PM |
|
|
Thread: IKE file testcase for oclHashcat
Post: RE: IKE file testcase for oclHashcat
@navox Please add this problem to Trac https://hashcat.net/trac/ s.t. atom can/will have a look at it. Thx
UPDATE: I've now opened a Trac ticket here: https://hashcat.net/trac/ticket/131
UPDATE 2: Th... |
|
philsmd |
Very old oclHashcat-plus Support
|
13 |
28,017 |
04-16-2013, 05:25 PM |
|
|
Thread: Inaccurate number
Post: RE: Inaccurate number
if you use usernames and sort the file, the hashes can still be non-unique.
there could be multiple users having the same password and hash. so the sort -u might not do what you think it does (beca... |
|
philsmd |
hashcat
|
13 |
3,874 |
12-13-2019, 05:33 PM |
|
|
Thread: Inaccurate number
Post: RE: Inaccurate number
--show is not for cracking, it is used to show the already cracked passwords (AFTER cracking)
https://hashcat.net/wiki/doku.php?id=frequently_asked_questions#how_can_i_show_previously_cracked_passw... |
|
philsmd |
hashcat
|
13 |
3,874 |
12-13-2019, 06:56 PM |
|
|
Thread: Inaccurate number
Post: RE: Inaccurate number
why would you need to unique the hashes ? just for testing ?
again, it depends on if you have usernames within the hash file... a line is not unique unless both the username:hash is unique , but fo... |
|
philsmd |
hashcat
|
13 |
3,874 |
12-13-2019, 09:43 PM |
|
|
Thread: include SHA1 Hash with the results
Post: RE: include SHA1 Hash with the results
you can use --left to show all hashes that are not cracked yet and --show to show all hashes that are already cracked with the corresponding passwords (see: https://hashcat.net/wiki/doku.php?id=freque... |
|
philsmd |
hashcat
|
1 |
1,916 |
02-27-2018, 06:51 PM |
|
|
Thread: increase maximum password length supported by kernel
Post: RE: increase maximum password length supported by ...
the syntax as mentioned withn the --help output is:
Code:
--
hashcat -m 3000 -a 3 hash.txt ?a?a?a?a?a?a?a
--
i.e. the hash (or hash file) must be specified before the mask |
|
philsmd |
hashcat
|
11 |
5,132 |
02-02-2019, 06:03 PM |
|
|
Thread: increasing threads for stdout?
Post: RE: increasing threads for stdout?
The main problem w/ more threads in stdout mode is that the bottleneck for this mode is indeed *the* stdout. What I mean is, the process of writing to stdout slows down the whole process group that mu... |
|
philsmd |
Old hashcat Support
|
9 |
16,844 |
06-02-2013, 03:15 PM |
|
|
Thread: increasing threads for stdout?
Post: RE: increasing threads for stdout?
I think it is just impossible to significantly increase the speed (and for sure increasing the # of threads doesn't help at all).
I'm not sure if you understood what I meant by saying the stdout is t... |
|
philsmd |
Old hashcat Support
|
9 |
16,844 |
06-02-2013, 04:22 PM |
|
|
Thread: increment function: how can i start not from 1?
Post: RE: increment function: how can i start not from 1...
all the necessary information is generally in the --help output:
Code:
--
--increment-min 3
--
|
|
philsmd |
hashcat
|
3 |
456 |
08-02-2020, 12:50 PM |
|
|
Thread: increment function: how can i start not from 1?
Post: RE: increment function: how can i start not from 1...
yeah, sure, both are needed. --increment just enables the increment feature, while --incement-min and --increment-max are optional command line parameters that allow to set the increment limits. |
|
philsmd |
hashcat
|
3 |
456 |
08-02-2020, 02:20 PM |
|
|
Thread: Increment knowing the last chars of password
Post: RE: Increment knowing the last chars of password
... or hashcat mask files (https://hashcat.net/wiki/doku.php?id=mask_attack#hashcat_mask_files)
... or salted hash types instead of unsalted ones (if there are alternative -m modes available for that... |
|
philsmd |
hashcat
|
2 |
2,038 |
05-12-2018, 12:42 PM |
|
|
Thread: INFO: removed 1 hash found in pot file
Post: RE: INFO: removed 1 hash found in pot file
You either use a new session (name) --session
OR
use --potfile-disable to disable the .pot file check (and writing) at all |
|
philsmd |
Old oclHashcat Support
|
4 |
18,849 |
03-26-2015, 11:31 PM |
|
|
Thread: INFO: removed 1 hash found in pot file
Post: RE: INFO: removed 1 hash found in pot file
You can't use --remove then, or at least you need to have the original hash list
If you have the original hash file, then just run something like this:
oclHashcat64.exe -m 21 --show --session all "C:... |
|
philsmd |
Old oclHashcat Support
|
4 |
18,849 |
03-27-2015, 01:03 AM |