Search Results
|
Post |
Author |
Forum
[asc]
|
Replies |
Views |
Posted |
|
|
Thread: how to create .rule and .hcmask files
Post: RE: how to create .rule and .hcmask files
I'm pretty sure they were both generated with
PACK (Password Analysis and Cracking Kit): https://github.com/iphelix/pack
https://web.archive.org/web/20190125201146/https://thesprawl.org/projects/pac... |
|
philsmd |
hashcat
|
5 |
1,189 |
04-22-2020, 09:39 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: help with hashcat.
Post: RE: help with hashcat.
try hashcat beta (https://hashcat.net/beta/) with CUDA installed |
|
philsmd |
hashcat
|
13 |
2,609 |
04-25-2020, 09:55 PM |
|
|
Thread: Separator Unmatched
Post: RE: Separator Unmatched
you need to specify the file with hashes (the "hash file") first:
for dictionary attack (-a 0) it is:
Code:
--
hashcat -m 0 -a 0 -w 3 hashes.txt wordlist.txt
--
as you can see, you need to ... |
|
philsmd |
hashcat
|
5 |
1,389 |
04-26-2020, 08:57 AM |
|
|
Thread: Bruteforce with descending characters - zzz,zzy,zzx
Post: RE: Bruteforce with descending characters - zzz,zz...
Furthermore, the left side is changed most frequently.
Is there any reason why you would need to change the order ?
You might be able to create a new hcstat2 file with hcstat2gen from hashcat-ut... |
|
philsmd |
hashcat
|
9 |
1,579 |
04-26-2020, 09:03 AM |
|
|
Thread: Whats the most efficient way to do this? (newbie)
Post: RE: Whats the most efficient way to do this? (newb...
maybe rule based attacks:
https://hashcat.net/wiki/doku.php?id=rule_based_attack
Code:
--
r ^T ^I ^W $5 $0
--
the last part (adding the digits, $5 $0) can be done also with a separate rule... |
|
philsmd |
hashcat
|
3 |
846 |
04-23-2020, 05:54 PM |
|
|
Thread: Separator Unmatched
Post: RE: Separator Unmatched
make sure that each line of the file myunshadow.txt has hashes fomatted in the correct way: https://hashcat.net/wiki/example-hashes
or use
Code:
--
hashcat -m 1420 --example-hashes
--
to se... |
|
philsmd |
hashcat
|
5 |
1,389 |
04-26-2020, 09:22 AM |
|
|
Thread: help with hashcat.
Post: RE: help with hashcat.
what's the output of
Code:
--
hashcat -I
--
(after you installed the CUDA sdk) |
|
philsmd |
hashcat
|
13 |
2,609 |
04-26-2020, 12:56 PM |
|
|
Thread: Bruteforce with descending characters - zzz,zzy,zzx
Post: RE: Bruteforce with descending characters - zzz,zz...
yeah.
but even for the approach with testing first password candidates at the end, you could actually just use -s / -l until the whole keyspace was tested, i.e. split your keyspace in x chunks and te... |
|
philsmd |
hashcat
|
9 |
1,579 |
04-26-2020, 03:39 PM |
|
|
Thread: Error CPU Intel Hashcat 5.1.0.
Post: RE: Error CPU Intel Hashcat 5.1.0.
uninstall pocl, mesa, beignet and install the vendor drivers as recommended on https://hashcat.net/hashcat/
OpenCL Runtime for Intel Core or Xeon processors: https://software.intel.com/en-us/articl... |
|
philsmd |
hashcat
|
6 |
1,890 |
04-27-2020, 11:28 AM |
|
|
Thread: CPU device not available
Post: RE: CPU device not available
you need to install the drivers as mentioned in https://hashcat.net/hashcat/
https://software.intel.com/en-us/articles/opencl-drivers#cpu-section
current win driver at time of this writing: http:/... |
|
philsmd |
hashcat
|
4 |
1,197 |
04-28-2020, 11:51 AM |
|
|
Thread: Some interesting test 14100
Post: RE: Some interesting test 14100
Please request this new feature on github https://github.com/hashcat/hashcat/issues
It would probably require a new optimized kernel that is dedicated to this special variant and I would suggest th... |
|
philsmd |
hashcat
|
5 |
1,319 |
04-28-2020, 01:59 PM |
|
|
Thread: CPU device not available
Post: RE: CPU device not available
Please install the nvidia driver directly from https://www.nvidia.com/Download/index.aspx
also see https://hashcat.net/faq/wrongdriver if installing the GPU driver doesn't work immediately |
|
philsmd |
hashcat
|
4 |
1,197 |
04-28-2020, 02:00 PM |
|
|
Thread: Separator Unmatched
Post: RE: Separator Unmatched
That's not the correct assumption.
It literally just said:
Code:
--
Hashfile 'xyz' on line 6 ...
--
The most important part is the "Hashfile" part. The filename of course is not what the ... |
|
philsmd |
hashcat
|
5 |
1,389 |
04-26-2020, 09:35 AM |
|
|
Thread: Bruteforce with descending characters - zzz,zzy,zzx
Post: RE: Bruteforce with descending characters - zzz,zz...
The --keyspace , --skip and --limit usage is very intuitive.
You just first determine the total "keyspace" (https://hashcat.net/wiki/doku.php?id=frequently_asked_questions#what_is_a_keyspace) with ... |
|
philsmd |
hashcat
|
9 |
1,579 |
04-27-2020, 08:54 AM |
|
|
Thread: Hashcating 7z passw
Post: RE: Hashcating 7z passw
-o is wrong in your command line. --outfile (or short -o) is only used for redirecting the output to a file (the results).
you need to specify the hash like this:
Code:
--
hashcat -m 11600 -a 3... |
|
philsmd |
hashcat
|
4 |
1,058 |
04-27-2020, 11:47 AM |
|
|
Thread: Merge .16800 files into a single one
Post: RE: Merge .16800 files into a single one
Linux:
Code:
--
cat single_captures/*.16800 > all_in_one/multi.16800
--
Windows:
Code:
--
copy single_captures\*.16800 all_in_one\multi.16800
--
[hr]
alternatively, if all files are... |
|
philsmd |
hashcat
|
1 |
609 |
04-28-2020, 04:50 PM |
|
|
Thread: ROMPER HASH
Post: RE: ROMPER HASH
english only
do not post hashes
see https://hashcat.net/forum/announcement-2.html |
|
philsmd |
hashcat
|
1 |
504 |
04-29-2020, 09:24 AM |
|
|
Thread: Unable to get hashcat to run after GPU update
Post: RE: Unable to get hashcat to run after GPU update
seems to be a installation or system configuration problem only... not really a problem with latest hashcat version.
You for instance shouldn't have CUDA 9.1 and CUDA 10.2 installed... most of the ti... |
|
philsmd |
hashcat
|
3 |
1,213 |
04-30-2020, 12:45 PM |
|
|
Thread: Guess rejection policy for mangling rules attack
Post: RE: Guess rejection policy for mangling rules atta...
no, you shouldn't bother about this. It would be way too complex and time consuming (performance drop) to check this type of "rejection". It would cost MUCH more to check for a rejection than actually... |
|
philsmd |
hashcat
|
1 |
527 |
04-27-2020, 12:00 PM |