Search Results
|
Post |
Author |
Forum |
Replies
[asc]
|
Views |
Posted |
|
|
Thread: resume hashcat from known progress
Post: RE: resume hashcat from known progress
It's not safe in general to restore from some arbitrary progress value.
If you know the restore file that would be much safer:
Code:
--
Restore.Point....: x/y
--
You can use the x value wit... |
|
philsmd |
hashcat
|
1 |
559 |
03-29-2020, 09:49 PM |
|
|
Thread: question about hccapx
Post: RE: question about hccapx
--potfile-disable
hashcat won't keep cracking the same hash/network again and again and again if it already was cracked. The hashcat.potfile will contain the "list" of cracked hashes |
|
philsmd |
hashcat
|
1 |
526 |
03-31-2020, 06:45 PM |
|
|
Thread: Hashcat failing with proper character set
Post: RE: Hashcat failing with proper character set
do not post hashes, see https://hashcat.net/forum/announcement-2.html |
|
philsmd |
hashcat
|
1 |
514 |
04-03-2020, 05:43 PM |
|
|
Thread: Hashcat and linux process substitution
Post: RE: Hashcat and linux process substitution
use
Code:
--
cat wordlist | hashcat -m 16500 -a 0 hashes.txt
--
instead... if and only if you really need to use a separate command (not using the dictionary directly, which of course should b... |
|
philsmd |
hashcat
|
1 |
552 |
04-08-2020, 01:18 AM |
|
|
Thread: 3 Questions About Hashcat
Post: RE: 3 Questions About Hashcat
1. only beta supports -m 22000 (https://hashcat.net/beta)
2. the keyspace is only traversed once, if while going to the password candidates one matches, it will be cracked... but you need to keep in ... |
|
philsmd |
hashcat
|
1 |
644 |
04-08-2020, 12:09 PM |
|
|
Thread: How to extract hash of mssql
Post: RE: How to extract hash of mssql
nmap for instance: https://nmap.org/nsedoc/scripts/ms-sql-dump-hashes.html
https://github.com/nmap/nmap/blob/a7638f57c88cb1b5da949147729fca76a0f332c5/scripts/ms-sql-dump-hashes.nse#L71-L73 |
|
philsmd |
hashcat
|
1 |
545 |
04-21-2020, 12:56 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 |
525 |
04-27-2020, 12:00 PM |
|
|
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 |
607 |
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 |
502 |
04-29-2020, 09:24 AM |
|
|
Thread: 5.1.0-91+ needed (I think)
Post: RE: 5.1.0-91+ needed (I think)
betas are available here: https://hashcat.net/beta/ |
|
philsmd |
Beta Tester
|
1 |
859 |
05-06-2020, 07:22 PM |
|
|
Thread: Discord
Post: RE: Discord
I think the idea in general is not bad, but it would be much more clever to contact the administrator (atom) or at least some moderators over here or IRC to discuss these types of ideas before announc... |
|
philsmd |
hashcat
|
1 |
900 |
05-02-2020, 06:46 PM |
|
|
Thread: hashmode sha1(sha1($pass).$salt) support?
Post: RE: hashmode sha1(sha1($pass).$salt) support?
This seems to be similar to:
-m 4520 = sha1($salt.sha1($pass))
-m 4521 = Redmine
-m 4522 = PunBB
but with the $salt at the end instead of at the beginning (all of the above use the salt at the s... |
|
philsmd |
hashcat
|
1 |
520 |
05-04-2020, 07:06 PM |
|
|
Thread: Help implementing FNV1 for a3 mode
Post: RE: Help implementing FNV1 for a3 mode
I would suggest to start with some simple hash types that involve md5/sha1 etc...
In general there are some algorithms listed here, that are not already implemented: https://github.com/hashcat/has... |
|
philsmd |
hashcat
|
1 |
557 |
05-04-2020, 07:11 PM |
|
|
Thread: Hashcat fails on MacBook hardware. Any cloud suggestions?
Post: RE: Hashcat fails on MacBook hardware. Any cloud s...
you could try to use the git version from https://github.com/hashcat/hashcat
install git, make, gcc, sed and all the other common build tools and run
Code:
--
git clone https://github.com/hashc... |
|
philsmd |
Hardware
|
1 |
619 |
05-26-2020, 09:50 PM |
|
|
Thread: Rule for targetting CamelCase passwords?
Post: RE: Rule for targetting CamelCase passwords?
Code:
--
hashcat -m 0 -a 1 -w 3 -j c -k c hash.txt dict1.txt dict2.txt
--
instead of the "c" rule you could also use the toggle rule: -j T0 -k T0 |
|
philsmd |
hashcat
|
1 |
512 |
05-27-2020, 12:16 PM |
|
|
Thread: Combinator attack - hashcat internals
Post: RE: Combinator attack - hashcat internals
what exactly are you comparing with ?
Is it this command ?
Code:
--
hashcat -m 3200 -a 1 -w 3 hash.txt dict1.txt dict2.txt
--
It also depends a lot on the sizes of the dicts and on the cost f... |
|
philsmd |
hashcat
|
1 |
575 |
05-28-2020, 08:52 AM |
|
|
Thread: where is the salt?
Post: RE: where is the salt?
do not post hashes: see https://hashcat.net/forum/announcement-2.html
The general rule is to just look at the source code on how the hashes are generated... if you do not have access to any code, i... |
|
philsmd |
hashcat
|
1 |
477 |
06-09-2020, 12:45 PM |
|
|
Thread: Password-based Uniform-Random-Equivalent Encryption
Post: RE: Password-based Uniform-Random-Equivalent Encry...
it wouldn't be surprising that there exists software that can encrypt disks/volumes/containers etc and make them look as random data.
The problem only is that also (plain text and easy to spot) metad... |
|
philsmd |
General Talk
|
1 |
557 |
06-13-2020, 03:45 PM |
|
|
Thread: -m 2500 hccapx works on hashcat-5.1.0+1831 but not 6.0
Post: RE: -m 2500 hccapx works on hashcat-5.1.0+1831 but...
what's your command ?
do you use -m 2500 in the command line ? |
|
philsmd |
hashcat
|
1 |
482 |
06-17-2020, 10:05 PM |
|
|
Thread: Rules doesn't work.
Post: RE: Rules doesn't work.
I can't give any advice about the other tools, but my recommendation is that you just should learn how hashcat works and the hashcat rules etc (see wiki, https://hashcat.net/wiki/) and just focus on h... |
|
philsmd |
hashcat
|
1 |
479 |
06-19-2020, 05:23 PM |