Search Results
|
Post |
Author |
Forum
[desc]
|
Replies |
Views |
Posted |
|
|
Thread: Best practice dealing with dic intersections
Post: RE: Best practice dealing with dic intersections
There are countless tools, but I guess the best is to just stick to hashcat-utils's rli/rli2 tool:
- https://hashcat.net/wiki/doku.php?id=hashcat_utils#rli
- https://hashcat.net/wiki/doku.php?id=hashc... |
|
philsmd |
General Talk
|
4 |
5,550 |
07-30-2017, 07:34 AM |
|
|
Thread: Cracking MySQL/MariaDB Hashes
Post: RE: Cracking MySQL/MariaDB Hashes
--increment-min and --increment-max are command line arguments that can be used in a mask attack (-a 3. Well, it is also supported in -a 6 and -a 7 actually, but always together with masks).
if you u... |
|
philsmd |
General Talk
|
2 |
5,985 |
08-04-2017, 07:39 AM |
|
|
Thread: Hashcat.net binaries 7-zip compression ratio
Post: RE: Hashcat.net binaries 7-zip compression ratio
Just have a look at the file tools/package_bin.sh:
https://github.com/hashcat/hashcat/blob/58d1dedd1e27aa3be5e0c6148b21099601253cf6/tools/package_bin.sh#L75 |
|
philsmd |
General Talk
|
1 |
2,848 |
08-20-2017, 08:05 AM |
|
|
Thread: MS Office Instant decryption
Post: RE: MS Office Instant decryption
because you probably should use the collider mode 9710 (with mask ?b?b?b?b?b) for instant access to the data |
|
philsmd |
General Talk
|
9 |
15,351 |
08-21-2017, 08:58 AM |
|
|
Thread: MS Office Instant decryption
Post: RE: MS Office Instant decryption
If you read this carefully https://hashcat.net/forum/thread-3665.html, you will see that you only need -m 9710 to access the data.
Have a look at the list of steps under the "KDF" section https://has... |
|
philsmd |
General Talk
|
9 |
15,351 |
09-12-2017, 05:00 PM |
|
|
Thread: Worldlist Clean up
Post: RE: Worldlist Clean up
just think about it like this: "I want to remove every digit that is followed by a non-digit"
you can express this with the unix sed tool like this:
Code:
--
sed -r 's/[0-9]+([^0-9])/\1/g'
--
|
|
philsmd |
General Talk
|
5 |
4,339 |
09-24-2017, 11:10 AM |
|
|
Thread: Bitcoin Wallet Help...
Post: RE: Bitcoin Wallet Help...
You won't get any explanation/help for the GUI here (it's a third party tool and we don't give support for it here). Use the command prompt (cmd).
See https://hashcat.net/wiki/doku.php?id=example_h... |
|
philsmd |
General Talk
|
3 |
11,701 |
10-29-2017, 07:23 PM |
|
|
Thread: Bitcoin Wallet Help...
Post: RE: Bitcoin Wallet Help...
You need to run it with python (I think you should run it with python 2.7).
Yes, after installing python (and setting it up correctly in your PATH variable), you just run
Code:
--
python bitcoi... |
|
philsmd |
General Talk
|
3 |
11,701 |
10-29-2017, 08:38 PM |
|
|
Thread: Why So Many Digests?
Post: RE: Why So Many Digests?
You have probably collected several full handshakes for the same network (all data for this set of handshakes is present in the hccapx file) and hashcat loads all of them.
This shouldn't make much sp... |
|
philsmd |
General Talk
|
2 |
3,533 |
11-03-2017, 09:39 PM |
|
|
Thread: what the hash is this?
Post: RE: what the hash is this?
-m 500 = md5crypt
see also https://hashcat.net/wiki/example_hashes |
|
philsmd |
General Talk
|
1 |
2,034 |
11-23-2017, 04:32 PM |
|
|
Thread: [SOLVED]What am i doing wrong? no commands work
Post: RE: What am i doing wrong? no commands work
The format of your hashes should be only like this:
Code:
--
$oldoffice$1*971400076ab82dd68XXXXXXXXXXXXXd1*49987289XXXXXXXXXXXXXa67b6747abc*6824aa13d09f0e8fXXXXXXXXXXXXXX8a
--
e.g. they should not ... |
|
philsmd |
General Talk
|
2 |
6,124 |
11-21-2017, 09:53 AM |
|
|
Thread: Cracking pdf file with arabic password using hashcat
Post: RE: Cracking pdf file with arabic password using h...
You do not need --hex-salt. This has nothing to do with salts.
If anything you would need --hex-charset, but that is not necessariy and only needed if you define a custom charset (-1, -2, -3 or -4)... |
|
philsmd |
General Talk
|
5 |
16,216 |
11-21-2017, 05:58 PM |
|
|
Thread: Cracking pdf file with arabic password using hashcat
Post: RE: Cracking pdf file with arabic password using h...
this of course depends on what the tool that you use to encrypt the pdf (acrobat reader etc) does with the input. It could use utf-8 by default. it could use utf16-le etc...
The linux echo tool wont ... |
|
philsmd |
General Talk
|
5 |
16,216 |
11-21-2017, 07:27 PM |
|
|
Thread: Using PACK - Interesting Results
Post: RE: Using PACK - Interesting Results
This problem was already reported several months ago (see https://github.com/iphelix/pack/issues/1), but it wasn't merged yet.
I think there are some forked versions that integrate the fix, like th... |
|
philsmd |
General Talk
|
3 |
3,370 |
12-01-2017, 09:09 AM |
|
|
Thread: Syntax Help
Post: RE: Syntax Help
You do not need the wallet.dat file directly for cracking (after you already extracted the information with bitcoin2john.py), you only need the file hash.txt for cracking (it already contains the "has... |
|
philsmd |
General Talk
|
3 |
3,163 |
12-02-2017, 09:01 AM |
|
|
Thread: CMIYC2017 - Challenge8 vBulletin
Post: RE: CMIYC2017 - Challenge8 vBulletin
You just generate all possible "hashes" (with all possible salts, the characters that are normally used is well-defined) and try to crack them. Of course not all hashes will be cracked, but the number... |
|
philsmd |
General Talk
|
2 |
2,516 |
12-06-2017, 08:48 AM |
|
|
Thread: Line-length exception?
Post: RE: Line-length exception?
you need to use -m 500 (or the long version of it: --hash-type 500):
Code:
--
hashcat64.exe -m 500 -a 0 -w 3 -o rs.txt rs.hash example.dict
--
|
|
philsmd |
General Talk
|
3 |
4,747 |
12-29-2017, 08:38 AM |
|
|
Thread: MD5($salt.$pass) hashcat syntax, help?
Post: RE: MD5($salt.$pass) hashcat syntax, help?
the hash must be formatted like this:
Code:
--
hash:salt
--
e.g.
531e89....:eWVzX3...
see https://hashcat.net/wiki/example_hashes |
|
philsmd |
General Talk
|
4 |
22,426 |
12-29-2017, 09:20 PM |
|
|
Thread: 4 word combinations from a short list of words
Post: RE: 4 word combinations from a short list of words
you could use someting like this (a perl script) and change the words if you need:
Code:
--
#!/usr/bin/env perl
use strict;
use warnings;
my @words = (
'fruit',
'apple',
'pear',
... |
|
philsmd |
General Talk
|
4 |
4,206 |
12-23-2017, 02:22 PM |
|
|
Thread: VTC Vertcoin wallet passphrase lost need help
Post: RE: VTC Vertcoin wallet passphrase lost need help
If you have an encrypted wallet.dat file, you should run bitcoin2john.py with it.
The resulting hash (without file names, remove the file names and colons from the output of bitcoin2john.py if any ... |
|
philsmd |
General Talk
|
8 |
7,222 |
01-04-2018, 01:27 PM |