Search Results
|
Post |
Author |
Forum |
Replies
[desc]
|
Views |
Posted |
|
|
Thread: Intel i7 with 8 cores - just one core computing
Post: RE: Intel i7 with 8 cores - just one core computin...
read the --help output and see how the different supported device types can be enabled (--opencl-device-types or short -D, uppercase D)
Code:
--
-D 1,2
--
it's not always guaranteed that the C... |
|
philsmd |
hashcat
|
3 |
662 |
07-09-2020, 09:39 PM |
|
|
Thread: Need help to make a custom wordlist
Post: RE: Need help to make a custom wordlist
it's actually not that easy to make policies/"rules" like this.
Furthermore, there are infinite many possibilities that an user might want differently and more flexible etc.
I think most of thes... |
|
philsmd |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
3 |
955 |
06-27-2020, 11:18 PM |
|
|
Thread: How to crack Apple Secure Notes?
Post: RE: How to crack Apple Secure Notes?
Code:
--
hashcat -m 16200 -a 0 -w 3 -r rules/best64.rule hash_file.txt word_list.txt
--
|
|
philsmd |
hashcat
|
3 |
678 |
07-12-2020, 07:18 PM |
|
|
Thread: fastest way to crack bcrypt
Post: RE: fastest way to crack bcrypt
yeah, very very good explanation @Mem5. your post is perfect because it explains what I forgot to mention above...
From my experience from the last couple of months/years, is that some people confu... |
|
philsmd |
hashcat
|
3 |
952 |
06-29-2020, 10:50 AM |
|
|
Thread: GPU Crack Speed Half of Expected
Post: RE: GPU Crack Speed Half of Expected
the commands that you use are very weird/wrong:
1. the -w that you use twice in your -a 0 (dictionary attack) is wrong. why two times -w ? one time -w without the actual workload profile
2. in t... |
|
philsmd |
hashcat
|
3 |
786 |
06-30-2020, 07:43 AM |
|
|
Thread: How to get the hash code for simple Veracrypt folder
Post: RE: How to get the hash code for simple Veracrypt ...
1. yeah, you can use that dd windows port. You can see how other users used it:
- https://hashcat.net/forum/thread-8493-post-45361.html#pid45361
- https://hashcat.net/forum/thread-8098-post-43441.ht... |
|
philsmd |
hashcat
|
3 |
681 |
06-30-2020, 07:47 PM |
|
|
Thread: how make charset?
Post: RE: how make charset?
you could just use a mask file (https://hashcat.net/wiki/doku.php?id=mask_attack#hashcat_mask_files)
mask_file.hcmask
Code:
--
qweasdzxcmnblkjpoi,~ ,123,1——8 ?1?1?1?1?1?1?1?1 + 1——2 ?... |
|
philsmd |
hashcat
|
3 |
696 |
07-14-2020, 12:09 PM |
|
|
Thread: Exit status code
Post: RE: Exit status code
here we just need to distinguish between the process exit code ($? variable) and the status that hashcat internally uses:
1. if you check the process exit code, you need to follow this list: https://... |
|
philsmd |
hashcat
|
3 |
651 |
07-16-2020, 11:27 AM |
|
|
Thread: GPU Crack Speed Half of Expected
Post: RE: GPU Crack Speed Half of Expected
without specifying any mask, hashcat will use the default mask, see https://hashcat.net/wiki/doku.php?id=hashcat#default_values
The default mask is probably not what you would call brute-force.
... |
|
philsmd |
hashcat
|
3 |
786 |
07-01-2020, 08:46 AM |
|
|
Thread: How to get the hash code for simple Veracrypt folder
Post: RE: How to get the hash code for simple Veracrypt ...
you could just simple open the file manager ("explorer.exe") and go to that folder to see if it has the correct file size (and double check the file name + extension).
Normally there also comes som... |
|
philsmd |
hashcat
|
3 |
681 |
07-01-2020, 11:40 AM |
|
|
Thread: Exit status code
Post: RE: Exit status code
no, this code is returned directly from the process, your shell is able to give you the results:
linux
Code:
--
hashcat example0.hash example.dict
echo $?
--
on windows it seems to be ... |
|
philsmd |
hashcat
|
3 |
651 |
07-16-2020, 01:57 PM |
|
|
Thread: Intel i7 with 8 cores - just one core computing
Post: RE: Intel i7 with 8 cores - just one core computin...
I'm not sure why you are confused about it, you actually stated above that:
1. "I installed Intel® CPU Runtime for OpenCL"
2. you have CUDA installed
3. you have installed the NVIDIA driver
so ... |
|
philsmd |
hashcat
|
3 |
662 |
07-11-2020, 08:46 AM |
|
|
Thread: how make charset?
Post: RE: how make charset?
that's the beauty and nice part of the flexibility of mask files (*.hcmask), you can just add however many mask you want, one after the other, line per line:
if we would only consider a theoretical... |
|
philsmd |
hashcat
|
3 |
696 |
07-14-2020, 07:31 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: How to get addresses from keys?
Post: RE: How to get addresses from keys?
I don't think so. You would need to have the password to decrypt it and get the private keys (the HD mechanism automatically allows to generate and lookup all the addresses and public keys if you have... |
|
philsmd |
General Talk
|
3 |
728 |
08-05-2020, 03:28 AM |
|
|
Thread: Hashcat Rules and Multibit HD Hash
Post: RE: Hashcat Rules and Multibit HD Hash
-a 3 is mask attack ("brute-force").
This makes no sense with a dictionary like rockyou.txt. For dictionary attacks you need to use -a 0 (word lists). |
|
philsmd |
hashcat
|
3 |
424 |
08-17-2020, 10:29 PM |
|
|
Thread: How to get addresses from keys?
Post: RE: How to get addresses from keys?
this makes no sense:
Code:
--
-1 ?u?l -2 ?u?l -3 ?u?l -4 ?u?l
--
they all define the same thing. so do it only once
Code:
--
hashcat -m 22700 -a 3 -w 3 -1 ?u?l -i --increment-min 5 hashe... |
|
philsmd |
General Talk
|
3 |
728 |
08-07-2020, 03:18 AM |
|
|
Thread: macOS firmware password hash mode ?
Post: RE: macOS firmware password hash mode ?
I'm not very familiar with these macOS passwords, but maybe you could try this:
https://forums.macrumors.com/threads/reset-macos-firmware-password.2039622/?post=24518521#post-24518521
(using firmwar... |
|
philsmd |
hashcat
|
3 |
388 |
08-26-2020, 12:28 AM |
|
|
Thread: Hashcat Rules and Multibit HD Hash
Post: RE: Hashcat Rules and Multibit HD Hash
no previous cracks needed, although it would make sense to try crack the example hash from https://hashcat.net/wiki/example_hashes just to make sure everything is working correctly (you could either j... |
|
philsmd |
hashcat
|
3 |
424 |
08-17-2020, 11:20 PM |