Search Results
|
Post |
Author |
Forum |
Replies |
Views |
Posted
[asc]
|
|
|
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: Problems cracking KeePass 1 db (AES)
Post: RE: Problems cracking KeePass 1 db (AES)
technically, you are not "cracking AES". AES is a cipher, an encryption/decryption algorithm with fixed key lengths (the keys are just a bunch of random bytes).
what you are instead doing is to cra... |
|
philsmd |
hashcat
|
5 |
823 |
07-10-2020, 12:40 PM |
|
|
Thread: Problems cracking KeePass 1 db (AES)
Post: RE: Problems cracking KeePass 1 db (AES)
maybe the root of the problem depends on which keepass2john tool you use.
I would highly recommend to use the "official" repository: https://github.com/magnumripper/johntheripper (this is also much... |
|
philsmd |
hashcat
|
5 |
823 |
07-10-2020, 11:12 AM |
|
|
Thread: Problems cracking KeePass 1 db (AES)
Post: RE: Problems cracking KeePass 1 db (AES)
example hashes are here: https://hashcat.net/wiki/doku.php?id=example_hashes
you could also use
Code:
--
-m 13400 --example-hashes
--
I would guess that your hash needs to start with $keepass... |
|
philsmd |
hashcat
|
5 |
823 |
07-10-2020, 10:39 AM |
|
|
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: AesCrypt hash: How to obtain iv, enc_iv, enc_key, HMAC and encrypttion
Post: RE: How to obtain iv, enc_iv, enc_key, HMAC and en...
next step would of course be to make sure it's a valid .aes file by comparing the file format description from https://www.aescrypt.com/aes_file_format.html with the file loaded in a hex editor (like ... |
|
philsmd |
hashcat
|
5 |
811 |
07-09-2020, 08:14 AM |
|
|
Thread: AesCrypt hash: How to obtain iv, enc_iv, enc_key, HMAC and encrypttion
Post: RE: How to obtain iv, enc_iv, enc_key, HMAC and en...
btw: just to be very clear, you need to run the perl script like this:
Code:
--
cd tools
perl aescrypt2hashcat.pl file.aes
--
i.e. in your cmd window, you need to enter the tools folder (I as... |
|
philsmd |
hashcat
|
5 |
811 |
07-08-2020, 12:11 PM |
|
|
Thread: Only 1x DDR4 module
Post: RE: Only 1x DDR4 module
what type/model of RAM and how many gigabytes (GB) of RAM ? |
|
philsmd |
Hardware
|
4 |
764 |
07-08-2020, 12:00 PM |
|
|
Thread: Only 1x DDR4 module
Post: RE: Only 1x DDR4 module
I hope you will learn to understand that you are asking the "wrong questions" . You can't really ask if something is enough without giving the whole specs of your system. What should we answer if you ... |
|
philsmd |
Hardware
|
4 |
764 |
07-08-2020, 07:15 AM |
|
|
Thread: Feasible method of cracking long, randomised passwords?
Post: RE: Feasible method of cracking long, randomised p...
no, mask attack would be MUCH, MUCH faster if you just try "random passwords". every operation involving the disk would slow it down tremendously as already explained above when we compared -a 3 with ... |
|
philsmd |
General Talk
|
10 |
2,064 |
07-07-2020, 08:28 PM |
|
|
Thread: AesCrypt hash: How to obtain iv, enc_iv, enc_key, HMAC and encrypttion
Post: RE: How to obtain iv, enc_iv, enc_key, HMAC and en...
you might need to have a look at the Aes Crypt file format page:
https://www.aescrypt.com/aes_file_format.html
They explain how the file format is and how it changed over time
there is "AES" at... |
|
philsmd |
hashcat
|
5 |
811 |
07-07-2020, 08:09 PM |
|
|
Thread: Feasible method of cracking long, randomised passwords?
Post: RE: Feasible method of cracking long, randomised p...
if you have some specific idea, you could also develop/program your own password generator (for instance a python script or whatever) and pass the candidates to hashcat like this:
Code:
--
pytho... |
|
philsmd |
General Talk
|
10 |
2,064 |
07-07-2020, 08:33 AM |
|
|
Thread: What type?
Post: RE: What type?
This is NOT allowed here. It's against the forum rules: https://hashcat.net/forum/announcement-2.html
You can't simply post some random hashes (in addition to that you are not even writing the pass... |
|
philsmd |
hashcat
|
1 |
381 |
07-07-2020, 08:27 AM |
|
|
Thread: Feasible method of cracking long, randomised passwords?
Post: RE: Feasible method of cracking long, randomised p...
mask attack: the candidates are directly generated/used on GPU, within the GPU kernel code
attack involving dictionaries (-a 0, -a 1, -a 6, -a 7): disk I/O bottleneck AND passwords need to be "send"/... |
|
philsmd |
General Talk
|
10 |
2,064 |
07-06-2020, 12:41 PM |
|
|
Thread: How to go about a password you know has 3 - 5 more or less known words?
Post: RE: How to go about a password you know has 3 - 5 ...
instead of
Code:
--
...
--
you should of course insert the path names as explained above.
Yeah, the BOM is indeed a problem, you should open the file in Notepad++ and store the file witho... |
|
philsmd |
General Talk
|
11 |
1,772 |
07-05-2020, 06:47 PM |
|
|
Thread: How to go about a password you know has 3 - 5 more or less known words?
Post: RE: How to go about a password you know has 3 - 5 ...
my guess is that you messed your command up.
maybe you specified a wrong file. Make sure that everything after "combinator" is a text file. for instance "combinator combinator ... " do not make sen... |
|
philsmd |
General Talk
|
11 |
1,772 |
07-05-2020, 06:19 PM |
|
|
Thread: How to go about a password you know has 3 - 5 more or less known words?
Post: RE: How to go about a password you know has 3 - 5 ...
the file redirect with
Code:
--
> two_words.txt
--
was already mentioned above.
Please read more carefully |
|
philsmd |
General Talk
|
11 |
1,772 |
07-05-2020, 05:35 PM |
|
|
Thread: How to go about a password you know has 3 - 5 more or less known words?
Post: RE: How to go about a password you know has 3 - 5 ...
different topic, off-topic
hint: encoding. UTF8 character encoding is supported by default, but all hashing algorithms work with bytes (0x00-0xff) anyways. |
|
philsmd |
General Talk
|
11 |
1,772 |
07-05-2020, 05:23 PM |
|
|
Thread: How to go about a password you know has 3 - 5 more or less known words?
Post: RE: How to go about a password you know has 3 - 5 ...
you could just use --stdout -a 1 or combinator.bin or combinator3.bin to generate a dictionary file.
you could for instance start with a list of 2 words combinated together and with -a 1 add the 3r... |
|
philsmd |
General Talk
|
11 |
1,772 |
07-05-2020, 01:15 PM |
|
|
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 |