Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.

Search Results
Post Author Forum Replies Views [desc] Posted
    Thread: hashcat -b is not seeing my grahpic card
Post: RE: hashcat -b is not seeing my grahpic card

FWIW, under Ubuntu 18.04 I'm also able to run hashcat well using the native packages. I have these installed: Code: -- $ dpkg -l | grep nvidia | egrep -v '^ii' | cut -b1-80 rcĀ  libnvidia-compu...
royce hashcat 4 892 06-15-2020, 05:21 PM
    Thread: CL_OUT_OF_HOST_MEMORY
Post: RE: CL_OUT_OF_HOST_MEMORY

Excellent! (And just for the record, you can download hashcat 6.0.0 and run it on older versions of Ubuntu)
royce hashcat 6 903 07-11-2020, 05:51 PM
    Thread: Make a word list with hashcat
Post: RE: Make a word list with hashcat

To clarify, do you mean that each word is 62 characters long, and only consisting of the letters '1', '3', 'e', and 'f' ? If so, this wordlist would be infeasible to exhaust. https://www.wolfram...
royce hashcat 3 910 05-26-2020, 04:29 PM
    Thread: Make a word list with hashcat
Post: RE: Make a word list with hashcat

It is not possible with 100,000 graphics cards. I encourage you to do the mathematical calculation yourself: - Test how many hashes per second are possible on your system - Calculate how many poss...
royce hashcat 3 910 05-26-2020, 08:45 PM
    Thread: low-end CPU recommendation.
Post: RE: low-end CPU recommendation.

FWIW, for some attacks I've seen it's good to have one core per GPU. I haven't seen anything that would benefit from multiple cores per GPU.
royce Hardware 6 936 09-23-2020, 08:15 AM
    Thread: newbie question - rejected passwords stay at zero
Post: RE: newbie question - rejected passwords stay at z...

Password candidates are only rejected when they're not applicable - for example, if the minimum password length supported by the password hash format is 8, and candidates less than 8 are being attempt...
royce hashcat 2 960 10-29-2019, 06:06 AM
    Thread: combine rules without duplicates?
Post: RE: combine rules without duplicates?

You could use mp64 to generate them, maybe? https://hashcat.net/wiki/doku.php?id=rules_with_maskprocessor Might still have to dedupe it a little after, depending
royce hashcat 10 965 08-31-2020, 11:53 PM
    Thread: combine rules without duplicates?
Post: RE: combine rules without duplicates?

Dedupe of text on the command line is a largely solved problem. Depends on your platform. 'sort -u' on Unix-likes covers most use cases. On Windows, 'sort.exe /unique' seems roughly equivalent.
royce hashcat 10 965 09-01-2020, 04:10 AM
    Thread: combine rules without duplicates?
Post: RE: combine rules without duplicates?

There's also this project, that tries to detect rules with redundant results: https://github.com/0xbsec/duprule/
royce hashcat 10 965 09-01-2020, 05:04 PM
    Thread: Hahshcat does not support the new rar3 type and needs help
Post: RE: Hahshcat does not support the new rar3 type an...

Please do not post real hashes. See the forum rules here: https://hashcat.net/forum/archive/index.php?announcement-2.html
royce hashcat 1 999 11-26-2019, 06:14 PM
    Thread: Rules effects.
Post: RE: Rules effects.

+1. You can also study which rules were effective for a given wordlist, rule list, and target hash list with --debug-mode / --debug-file.
royce hashcat 3 1,045 02-05-2020, 06:10 PM
    Thread: I'm using Windows - where does combinator.exe write out to?
Post: RE: I'm using Windows - where does combinator.exe ...

The canonical way to do this is simply pipe the output of combinator to hashcat itself, so you don't have to store the result anywhere. combinator list1 list2 | hashcat ...
royce hashcat 2 1,062 08-14-2019, 02:35 AM
    Thread: unknown hash type
Post: RE: unknown hash type

https://hashcat.net/forum/archive/index.php?announcement-2.html
royce hashcat 2 1,064 09-25-2019, 03:42 AM
    Thread: Noob question: md5 salted unix unknown password cracking
Post: RE: Noob question: md5 salted unix unknown passwor...

Per the forum rules: https://hashcat.net/forum/archive/index.php?announcement-2.html ... do not post hashes. I've redacted yours.
royce hashcat 2 1,078 12-21-2019, 01:52 AM
    Thread: SHA256 (AuthMe)
Post: RE: SHA256 (AuthMe)

This type is present in the beta version, not yet released. https://hashcat.net/beta/ Or you can wait until the release.
royce hashcat 2 1,085 01-25-2020, 07:35 PM
    Thread: Brute-Force mask
Post: RE: Brute-Force mask

There are probably too many combinations to reasonably exhaust, but to model how many masks would be needed, you can use the `policygen` tool from the PACK toolkit: https://github.com/iphelix/pack/...
royce hashcat 4 1,108 05-20-2020, 04:04 AM
    Thread: Brute-Force mask
Post: RE: Brute-Force mask

Yep. That's what will take 49 years. :)
royce hashcat 4 1,108 05-20-2020, 10:35 AM
    Thread: Juniper netscreen hash help
Post: RE: Juniper netscreen hash help

does the attack work against the Netscreen example hash from the hashcat wiki (https://hashcat.net/wiki/doku.php?id=example_hashes)? nNxKL2rOEkbBc9BFLsVGG6OtOUO/8n:user
royce hashcat 2 1,124 12-11-2019, 06:15 AM
    Thread: change working directory
Post: RE: change working directory

In the future, you can also use https://github.com/philsmd/analyze_hc_restore, written by a core hashcat developer. You can rewrite a restore file, changing various config items.
royce hashcat 3 1,133 12-16-2019, 11:43 PM
    Thread: scrypt hash format
Post: RE: scrypt hash format

Example method - script by atom. Code: -- #!/usr/bin/perl use strict; use warnings; use MIME::Base64; while (my $line = ) { chomp $line; my @data = split '\$', $line; if ($data[5] ne 64) ...
royce hashcat 2 1,187 08-14-2019, 04:15 PM