Search Results
|
Post
[desc]
|
Author |
Forum |
Replies |
Views |
Posted |
|
|
Thread: My master Password
Post: RE: My master Password
are you talking about blockchain.com / blockchain.info wallets ? what files do you have ?
hashcat supports these:
-m 12700 = Blockchain, My Wallet, $blockchain$...
-m 15200 = Blockchain, My Walle... |
|
philsmd |
hashcat
|
3 |
2,049 |
07-04-2019, 11:31 AM |
|
|
Thread: My next learning curve... from brute force to hybrid with rules.
Post: RE: My next learning curve... from brute force to ...
-a 3 is only used for mask attack
if you want to use hybrid (-a 6 or -a 7) you need to adjust your command line... most importantly the -a x option.
for -a 6 and -a 7 you need to provide both th... |
|
philsmd |
hashcat
|
2 |
3,527 |
06-24-2017, 11:29 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: nano syntax highlighting masks
Post: RE: nano syntax highlighting masks
interesting. thanks for the contribution.
... but I think your syntax rules do not catch all cases see:
1. https://hashcat.net/wiki/doku.php?id=mask_attack#hashcat_mask_files
2. https://hashcat.n... |
|
philsmd |
User Contributions
|
2 |
2,218 |
05-28-2019, 07:42 PM |
|
|
Thread: Need advice of Drivers for my setup.
Post: RE: Need advice of Drivers for my setup.
why are you using pipe/stdin ?
It's very weird that you are asking why something is not fast enough but don't really explain what your command is and why you are using a Pipe:
Quote:
--
Guess.B... |
|
philsmd |
hashcat
|
5 |
1,838 |
02-20-2020, 01:01 AM |
|
|
Thread: Need app to open the files.
Post: RE: Need app to open the files.
try "cmd.exe"
you open the command prompt cmd.exe by clicking on the start button of windows and type "c", "m", "d" and hit enter.
A black windows will appear.
with the command "cd" and the... |
|
philsmd |
hashcat
|
1 |
464 |
07-05-2020, 09:28 AM |
|
|
Thread: Need assistance
Post: RE: Need assistance
no, this is not correct. it should only have one ".txt" in it
hash.txt.txt is not the same as hash.txt
in your screenshot it's very obvious that for instance example0.cmd is just listed as "exam... |
|
philsmd |
hashcat
|
4 |
1,772 |
10-14-2019, 08:31 AM |
|
|
Thread: Need help
Post: RE: Need help
md5 ("[email protected]") == 120b8510fd7091bc12f890433f65036f
it's against the forum rules to post hashes
you could use different types of attacks, -a 3, -a 7 (yeah even -a 1) and of course ... |
|
philsmd |
hashcat
|
6 |
1,891 |
09-02-2019, 06:55 PM |
|
|
Thread: Need help
Post: RE: Need help
I already mentioned one way to improve the speed (with stdin/pipe). Depending on the hash type (-m x), there might be also the possibility to just use a different algorithm, e.g. salted hashes instead... |
|
philsmd |
hashcat
|
6 |
1,891 |
02-08-2020, 06:03 PM |
|
|
Thread: Need help
Post: RE: Need help
well, it's the prefix as I already told you. The speed with -m 20 will be slower of course, because salted.
We actually also have a FAQ and some questions like this https://hashcat.net/faq/morework... |
|
philsmd |
hashcat
|
6 |
1,891 |
02-08-2020, 08:04 PM |
|
|
Thread: need help ( paid )
Post: RE: need help ( paid )
yeah, I agree. It's also against the spirit of this forum. we are willing to explain and teach you how to use hashcat if you are willing to invest some time and brain power into it... you need to be o... |
|
philsmd |
hashcat
|
4 |
3,523 |
04-14-2018, 11:40 AM |
|
|
Thread: Need help combinding 2 different dictionaries
Post: RE: Need help combinding 2 different dictionaries
you can use something like this:
Code:
--
hashcat --stdout -o temp_dict.txt -a 6 text1.txt ?d?d?d?d
--
to generate a dict containing the words within the first file (text1.txt) combined with the... |
|
philsmd |
hashcat
|
1 |
1,402 |
01-04-2019, 11:03 AM |
|
|
Thread: Need help for this algoritm
Post: RE: Need help for this algoritm
For instance you could just use -m 120 = sha1($salt.$pass) (see https://hashcat.net/wiki/example_hashes) where the format of your hashes is:
Code:
--
sha1_hash:USERNAME:
--
|
|
philsmd |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
1 |
3,208 |
05-07-2017, 06:28 PM |
|
|
Thread: Need help on cracking veracrypt hidden partition
Post: RE: Need help on cracking veracrypt hidden partiti...
[update]: undeath was once again faster to answer the questions. he of course gives very good advice so read his suggestions too. I will leave my reply here anyways, maybe it adds just a little bit mo... |
|
philsmd |
hashcat
|
4 |
2,770 |
12-31-2018, 11:57 AM |
|
|
Thread: need help setting up pattern/mask
Post: RE: need help setting up pattern/mask
it's probably too long to brute-force, infeasible. maybe dict + rules is a better alternative ?
Code:
--
hashcat -m 14800 -w 3 -a 3 --increment --increment-min 6 --increment-max 10 --custom-char... |
|
philsmd |
hashcat
|
3 |
1,781 |
05-31-2019, 03:34 PM |
|
|
Thread: need help setting up pattern/mask
Post: RE: need help setting up pattern/mask
small dict with very specific rules might help a lot here and crack the hashes much faster. of course it depends on how much you know about the base words and possible rules (like uppercasing the firs... |
|
philsmd |
hashcat
|
3 |
1,781 |
05-31-2019, 07:30 PM |
|
|
Thread: need help to extract true crypt hash
Post: RE: need help to extract true crypt hash
You should use this guide: https://hashcat.net/faq#how_do_i_extract_the_hashes_from_truecrypt_volumes
you should test it on a new sample with known password (i.e. test if you are doing all steps co... |
|
philsmd |
hashcat
|
1 |
1,292 |
02-23-2019, 07:31 PM |
|
|
Thread: Need help to identify encryption
Post: RE: Need help to identify encryption
I think this is not a good strategy to get a helpful answer:
1. breaking forum rules (https://hashcat.net/forum/announcement-2.html). Do NOT post hashes
2. it could be anything... I think you either... |
|
philsmd |
hashcat
|
2 |
1,120 |
02-08-2020, 11:19 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 |