Search Results
|
Post |
Author |
Forum |
Replies
[asc]
|
Views |
Posted |
|
|
Thread: SHA512 without salt
Post: RE: SHA512 without salt
Wow, this is a very nice analysis @epixoip! Well done!
That's some very precious knowledge about how PHP deals with a zero-length salt for sha512crypt (or better said, no salt at all) ... and might... |
|
philsmd |
hashcat
|
4 |
5,167 |
06-30-2017, 09:11 AM |
|
|
Thread: Problema en iniciar Hashcat Handshake
Post: RE: Problema en iniciar Hashcat Handshake
@wirelees Last warning (before you get banned, next time): Forum rules exists for good reasons and (actually the first rule of this small set of rules) https://hashcat.net/forum/announcement-2.html em... |
|
philsmd |
General Talk
|
4 |
4,781 |
07-12-2017, 12:53 PM |
|
|
Thread: old box compatibility with Hashcat
Post: RE: old box compatibility with Hashcat
That's probably a typo, I think epixoip means hashcat-legacy (https://github.com/hashcat/hashcat-legacy), i.e. the (old) CPU-based only hashcat tool (that was called "hashcat" before "oclHashcat" was ... |
|
philsmd |
General Talk
|
4 |
5,001 |
07-14-2017, 09:27 AM |
|
|
Thread: Office hash trouble
Post: RE: Office hash trouble
you should make sure that it looks similar to the example hash listed here:
https://hashcat.net/wiki/example_hashes
You should also try to use/crack the example hash to make sure that your command... |
|
philsmd |
hashcat
|
4 |
4,319 |
07-29-2017, 03:37 PM |
|
|
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,551 |
07-30-2017, 07:34 AM |
|
|
Thread: Hashcat SHA1 output "hash:plain" to plain
Post: RE: Hashcat SHA1 output "hash:plain" to plain
Code:
--
hashcat -m 100 --show --outfile-format 2 originalHashList.txt
--
p.s.: do not post hashes. this is against the forum rules. you will get banned |
|
philsmd |
hashcat
|
4 |
5,280 |
08-22-2017, 07:16 AM |
|
|
Thread: Hashcat SHA1 output "hash:plain" to plain
Post: RE: Hashcat SHA1 output "hash:plain" to plain
something like this should work (on linux or mingw):
Code:
--
cut -b 42- hashcat.potfile | ./hashcat --stdout --outfile-autohex-disable
--
or you could also copy the file and use any advance... |
|
philsmd |
hashcat
|
4 |
5,280 |
08-22-2017, 11:00 PM |
|
|
Thread: ERROR: Use of -r/--rules-file and -g/--rules-generate only allowed in attack mode 0.
Post: RE: ERROR: Use of -r/--rules-file and -g/--rules-g...
you need to use -a 0 to use --rules-file (or short -r). The same is true for --rules-generate (or short -g), it is only supported with straight/dictionary attack (-a 0). |
|
philsmd |
hashcat
|
4 |
4,702 |
08-24-2017, 08:23 PM |
|
|
Thread: ERROR: Use of -r/--rules-file and -g/--rules-generate only allowed in attack mode 0.
Post: RE: ERROR: Use of -r/--rules-file and -g/--rules-g...
Within this video hashcat-legacy (https://github.com/hashcat/hashcat-legacy) is being used and not the new hashcat.
Yeah, 2 of the differences we notice here between hashcat-legacy and hashcat is t... |
|
philsmd |
hashcat
|
4 |
4,702 |
08-24-2017, 08:46 PM |
|
|
Thread: Hybrid attack splitting
Post: RE: Hybrid attack splitting
the only ways to reduce the time needed for one chunck even further than -l 1 is to use lower -n/-u values (which affects the speed) or to reduce the number of hashes (which is also counter-productive... |
|
philsmd |
hashcat
|
4 |
4,187 |
09-24-2017, 02:48 PM |
|
|
Thread: Hybrid attack
Post: RE: Hybrid attack
You could use a hcmask file (see https://hashcat.net/wiki/doku.php?id=mask_attack#hashcat_mask_files):
file my.hcmask:
Code:
--
?l?u?d,key?1
?l?u?d,?1key
?l?u?d,key?1?1
?l?u?d,?1?1key
?l?u?... |
|
philsmd |
hashcat
|
4 |
6,069 |
10-04-2017, 08:27 PM |
|
|
Thread: bcrypt salt format
Post: RE: bcrypt salt format
I quickly searched on the web and it seems the obfuscation is just that the algorithm adds " 8 6 4 3 2 6 d b 2 f e 3 b e 4 0 c c 2 4 1 8 7 7 f 6 a 2 c 9 0 b" to the hash (from the start of the hash ev... |
|
philsmd |
hashcat
|
4 |
4,539 |
12-09-2017, 11:24 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,428 |
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: Statsprocessor specific characters
Post: RE: Statsprocessor specific characters
Why do you want to write this to a file ?
Hashcat has in-built support for markov chains and mask attack (-a 3).
Anyways, if you really, really want to write it to a disk (I don't know why), you n... |
|
philsmd |
hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip
|
4 |
4,974 |
12-23-2017, 07:28 PM |
|
|
Thread: Recover password file .7z partially known
Post: RE: Recover password file .7z partially known
That's a 3 MB file compressed (uncompressed maybe even much larger if not totally random data).
Are there several files within the .7z file ?
You could also try to increase the limit that hashcat ac... |
|
philsmd |
hashcat
|
4 |
4,899 |
01-05-2018, 10:35 AM |
|
|
Thread: Hash craked with John the ripper but failed with Hashcat
Post: RE: Hash craked with John the ripper but failed wi...
if you use -a 0 you should specify at least one word list (dictionary file).
Otherwise, hashcat will assume that you sent the password candidates via standard input (stdin) and therefore use a pipe... |
|
philsmd |
hashcat
|
4 |
9,494 |
02-02-2018, 05:22 PM |
|
|
Thread: "Getting Help from Friends" -- Reverse my hash?
Post: RE: "Getting Help from Friends" -- Reverse my hash...
In general (if we do not look at ethereum pre-sale) it's not always the case that only by having found the password corresponding to a certain hash you can access data of the owner of the hash (if no ... |
|
philsmd |
hashcat
|
4 |
3,766 |
01-20-2018, 10:58 PM |
|
|
Thread: "Getting Help from Friends" -- Reverse my hash?
Post: RE: "Getting Help from Friends" -- Reverse my hash...
This discussion would also be interesting here: https://hashcat.net/forum/thread-6405-post-39256.html#pid39256
Basically, if you can reveal at least the last 2 blocks (2*16 bytes = 32 bytes) of the... |
|
philsmd |
hashcat
|
4 |
3,766 |
02-11-2018, 07:20 PM |
|
|
Thread: Please help with mask for 128 bit pdf key
Post: RE: Please help with mask for 128 bit pdf key
it's not allowed to post hashes.
The encryption used by the PDF algorithm uses a 128 bit key.
This key is derived by a key-derivation-function and will be generated from your password as an inpu... |
|
philsmd |
hashcat
|
4 |
4,061 |
02-12-2018, 10:51 PM |