Search Results
|
Post |
Author |
Forum |
Replies |
Views
[desc]
|
Posted |
|
|
Thread: brute force with 11 length password(MD4)
Post: RE: brute force with 11 length password(MD4)
I don't agree that "H", "K", "M" and "P" are lowercase characters.
It's probably also not the best idea to mask attack such passwords (there are some exception, e.g. if you know that those password... |
|
philsmd |
hashcat
|
9 |
3,465 |
11-29-2019, 09:34 AM |
|
|
Thread: how to remove hash from output file
Post: RE: how to remove hash from output file
I can't reproduce this problem and I now tried a lot of different commands etc.
Which version of hashcat do you use?
make sure that you use the latest release version (3.6 currently). |
|
philsmd |
hashcat
|
3 |
3,469 |
08-14-2017, 12:00 PM |
|
|
Thread: how to remove hash from output file
Post: RE: how to remove hash from output file
--outfile-format 2 combined with --username will only output the username and the password.
What you should know is that -o always appends to the file and therefore the file cracked.txt won't be ov... |
|
philsmd |
hashcat
|
3 |
3,469 |
08-14-2017, 10:32 AM |
|
|
Thread: Hashcat not getting any candidates from maskprocessor
Post: RE: Hashcat not getting any candidates from maskpr...
did you try if the maskprocessor command works at all ? does the left part produce any candidates if used alone:
./mp64.bin -i 1:8 ?a?a?a?a?a?a?a?a
also the start is probably very small with lengt... |
|
philsmd |
hashcat
|
9 |
3,469 |
05-31-2019, 12:12 PM |
|
|
Thread: Hashcat not getting any candidates from maskprocessor
Post: RE: Hashcat not getting any candidates from maskpr...
maybe whenever you find some free time, you could investigate this stdin problem further... did you try with a different terminal ? are you using linux ?
you could also try if "cat" (or windows "ty... |
|
philsmd |
hashcat
|
9 |
3,469 |
05-31-2019, 07:23 PM |
|
|
Thread: Hashcat not getting any candidates from maskprocessor
Post: RE: Hashcat not getting any candidates from maskpr...
oh thanks for the confirmation. so my educated guess was spot on.
I actually saw a similar problem in the past... but it's soo weird why this is happening.
It's most likely a driver problem, but t... |
|
philsmd |
hashcat
|
9 |
3,469 |
06-04-2019, 09:19 PM |
|
|
Thread: Hashcat not getting any candidates from maskprocessor
Post: RE: Hashcat not getting any candidates from maskpr...
entirely unrelated. has nothing to do with pipe and stdin.
also your problems are PEBCAK as far as I can tell
example hashes are here: https://hashcat.net/wiki/example_hashes you always need to ... |
|
philsmd |
hashcat
|
9 |
3,469 |
06-08-2019, 12:52 PM |
|
|
Thread: Hashcat not getting any candidates from maskprocessor
Post: RE: Hashcat not getting any candidates from maskpr...
to me pebcak is not an insult. it's a problem description i.e. what the main cause of the problem could be.
sorry if it sounded like an insult to you, sometimes it's difficult to express oneself (a... |
|
philsmd |
hashcat
|
9 |
3,469 |
06-08-2019, 04:56 PM |
|
|
Thread: Mask starting with a dash
Post: RE: Mask starting with a dash
The general rule for any command line tool using the (defacto) standard way of using arguments (getopts) is that the user needs to specify when the list of arguments is over and the remaining paramete... |
|
philsmd |
hashcat
|
4 |
3,494 |
05-08-2018, 07:17 PM |
|
|
Thread: Mask starting with a dash
Post: RE: Mask starting with a dash
I don't think this is a problem of hashcat, but this is how most command line tools work.
a dash is a special character and denotes the beginning of a command line parameter.
one dash introduces a s... |
|
philsmd |
hashcat
|
4 |
3,494 |
05-08-2018, 10:37 AM |
|
|
Thread: Which corresponding global settings file do you need to modify?
Post: RE: Which corresponding global settings file do yo...
You could store your custom set of characters into a hcchr file, see https://hashcat.net/wiki/doku.php?id=mask_attack#hashcat_charset_files and use the file as a custom charset (e.g. -4 file4.hcchr or... |
|
philsmd |
Hardware
|
4 |
3,506 |
04-08-2018, 05:43 PM |
|
|
Thread: Been away for a while
Post: RE: Been away for a while
|
philsmd |
hashcat
|
4 |
3,509 |
06-12-2018, 07:58 PM |
|
|
Thread: SHA256 How to get digest value in `unsigned char` format?
Post: RE: SHA1 How to get digest value in `Byte` format?
I think it makes sense to explain the problem with some exampes too.
just an example, maybe not applicable to your problem at all:
"I want to convert 0x01020304 to 0x04030201"
"I want to conver... |
|
philsmd |
hashcat
|
8 |
3,509 |
03-30-2019, 10:00 AM |
|
|
Thread: SHA256 How to get digest value in `unsigned char` format?
Post: RE: SHA256 How to get digest value in `unsigned ch...
the u32 and u8 are primitive types, you can simply cast an array of 4-byte integers to an array with 1-byte chars/bytes.
Code:
--
u8 * bytes = (u8 *) digest32;
--
or copy them directly
C... |
|
philsmd |
hashcat
|
8 |
3,509 |
03-30-2019, 11:50 AM |
|
|
Thread: SHA256 How to get digest value in `unsigned char` format?
Post: RE: SHA256 How to get digest value in `unsigned ch...
The length of a normal sha256 hash is 64 hexadecimal characters and therefore 32 raw bytes. You are trying to use 4 ints of 4 bytes = 4 * 4 = 16 bytes. That's only half the bytes of the full hash. |
|
philsmd |
hashcat
|
8 |
3,509 |
03-31-2019, 07:31 PM |
|
|
Thread: SHA256 How to get digest value in `unsigned char` format?
Post: RE: SHA256 How to get digest value in `unsigned ch...
no, it's 8 ints (all of which are 4 bytes), see https://github.com/hashcat/hashcat/blob/319bf80178e946f3b833aea3daefe3ddbfde51c2/OpenCL/inc_hash_sha256.h#L64 |
|
philsmd |
hashcat
|
8 |
3,509 |
04-01-2019, 08:35 AM |
|
|
Thread: Regarding to OS X v10.7/8/9
Post: RE: Regarding to OS X v10.7/8/9
for -m 1722: sha512 ($salt.$pass)
for -m 7100: PBKDF2-HMAC-SHA512
you can find this information all around the web. It is not a secret. |
|
philsmd |
General Help
|
1 |
3,511 |
10-22-2015, 12:29 PM |
|
|
Thread: CISCO-IOS SHA256
Post: RE: CISCO-IOS SHA256
It's not allowed to post hashes.
1 week ban to revise the forum rules! |
|
philsmd |
General Talk
|
1 |
3,518 |
04-04-2017, 05:04 PM |
|
|
Thread: DES-ECB Numeric Key Search
Post: RE: DES-ECB Numeric Key Search
just use -1 charsets/DES_special/DES_numeral.charset |
|
philsmd |
hashcat
|
3 |
3,522 |
08-03-2017, 07:48 AM |
|
|
Thread: DES-ECB Numeric Key Search
Post: RE: DES-ECB Numeric Key Search
you still need to use --hex-charset also for charsets/DES_special/DES_numeral.charset since the charset is in hexadecimal format |
|
philsmd |
hashcat
|
3 |
3,522 |
08-03-2017, 09:32 AM |