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 Posted [desc]
    Thread: Help with spaces and rules
Post: RE: Help with spaces and rules

'head' just shows the first X lines of output (the default is 10 lines). This is just to make the output shorter, and give a sample from the beginning of the output.
royce hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip 5 5,809 02-10-2018, 06:30 PM
    Thread: --stdout combinator attack
Post: RE: --stdout combinator attack

Syntax example? Works for me: Code: -- $ cat test.list password rockyou linkedin hashcat hunter2 $ hashcat -a 1 test.list test.list --stdout passwordpassword passwordrockyou rockyoupa...
royce hashcat 2 2,402 02-11-2018, 08:39 AM
    Thread: hashing MS Office 2010 so slow
Post: RE: hashing MS Office 2010 so slow

Yes, newer Office hashes are pretty slow. You can add -w 4 and -O; that might help.
royce hashcat 3 2,894 02-12-2018, 10:01 AM
    Thread: DES ECB error
Post: RE: DES ECB error

It's a family reunion! Code: -- $ hashcat --quiet --potfile-path=/dev/null --keep-guessing -m 14000 test.hash -a 3 -1 '`012abcdghirstu' ?1?1?1?1?1?1?1?1 24ac458a29cc3241:5337554801018442:harica...
royce hashcat 10 7,625 02-16-2018, 06:07 AM
    Thread: Bruteforce + Custom characters
Post: RE: Bruteforce + Custom characters

If the first 8 characters are truly unknown, then the first 8 positions of the mask would be ?a, and the rest would be literal / hard-coded: ?a?a?a?a?a?a?a?aAlis-ZA
royce hashcat 1 1,857 02-17-2018, 06:27 PM
    Thread: What does the values in Speed Dev indicate
Post: RE: What does the values in Speed Dev indicate

The first device is hashing candidate passwords at a rate of roughly 9452700 hashes per second.
royce hashcat 1 1,827 02-17-2018, 06:28 PM
    Thread: DES ECB error
Post: RE: DES ECB error

But why does the cracking approach sometimes find one first, and sometimes find the other one first? I would expect the attack to be deterministic and reproducible.
royce hashcat 10 7,625 02-17-2018, 06:36 PM
    Thread: brute forcing sha256 - need help locating salt in open source code
Post: RE: brute forcing sha256 - need help locating salt...

And if you need it before it's added to hashcat, you'll have to fall back to other tools. John the Ripper supports it with a dynamic mode (CPU only): Code: -- Format label ...
royce hashcat 8 6,872 02-17-2018, 07:21 PM
    Thread: Hybrid Attack
Post: RE: Hybrid Attack

Nevertheless, that's the answer. Because of how hashcat is optimized to run, undersized masks on the left-hand side have more of an impact on speed than undersized masks on the right-hand side.
royce hashcat 3 3,010 02-17-2018, 07:22 PM
    Thread: Generating wordlist using specific charlist with exclusions
Post: RE: Generating wordlist using specific charlist wi...

Be sure to also do the math to calculate how many password candidates these rules will eliminate compared the speed of your attack. Some of the rules you're describing won't reduce the keyspace very m...
royce General Talk 8 6,771 02-17-2018, 07:31 PM
    Thread: DES ECB error
Post: RE: DES ECB error

Normally, yes. But with --keep-guessing, I would expect all possibilities to be exhausted. In different output order, but all represented.
royce hashcat 10 7,625 02-17-2018, 10:00 PM
    Thread: Generating wordlist using specific charlist with exclusions
Post: RE: Generating wordlist using specific charlist wi...

I'm not aware of anything dedicated that would natively provide a way to express the rules you described in the original question. At that point, you're basically looking at using python, perl, etc...
royce General Talk 8 6,771 02-22-2018, 09:29 AM
    Thread: Linux GPU accelerated cracking
Post: RE: Linux GPU accelerated cracking

Skip K-a-l-i. I'd go straight to release of Ubuntu 16.04 LTS, and then set up using these instructions: https://hashcat.net/faq/wrongdriver ... and this version of the drivers directly from AMD:...
royce hashcat 5 10,071 02-22-2018, 04:36 PM
    Thread: solved -- invalid argument hashcat 4.1.0 --gpu-temp-retain=
Post: RE: invalid argument hashcat 4.1.0 --gpu-temp-reta...

Specifically: Removed option --gpu-temp-retain that tried to retain GPU temperature at X degrees celsius - please use driver-specific tools Removed option --powertune-enable to enable power tuning ...
royce hashcat 3 5,849 02-24-2018, 08:58 PM
    Thread: My practice attempt to decrypt a SHA-256 hash of an IP address
Post: RE: My practice attempt to decrypt a SHA-256 hash ...

Your example in crackitBruteForce.sh will only match three-digits-per-octet IPs (111.111.111.111) and miss other possibilities (111.111.111.1, 1.1.1.1, 11.11.11.11, etc.) This is closer: https://pa...
royce hashcat 13 9,515 02-26-2018, 02:10 AM
    Thread: My practice attempt to decrypt a SHA-256 hash of an IP address
Post: RE: My practice attempt to decrypt a SHA-256 hash ...

Couple of niggles: - That larger file I linked to covers actual possible IP addresses. Many ?d?d?d (above 254) are invalid in an IP-address octet. So your masks will try many IPs that are not valid...
royce hashcat 13 9,515 02-26-2018, 08:15 AM
    Thread: is hashcat still support VCL?
Post: RE: is hashcat still support VCL?

VCL is no longer supported. Intel GPUs are supported via OpenCL, though there are some known problems with Intel's GPU OpenCL implementation, so YMMV.
royce hashcat 3 2,728 02-27-2018, 08:06 AM
    Thread: is hashcat still support VCL?
Post: RE: is hashcat still support VCL?

What's out there today divides the work up, using one of a few options: * Natively, using hashcat's --keyspace, --skip, --limit commands, calculated by custom scripts and work distribution * Fre...
royce hashcat 3 2,728 02-27-2018, 09:39 AM
    Thread: Problem with Device #1? shuts down process
Post: RE: Problem with Device #1? shuts down process

https://hashcat.net/wiki/doku.php?id=frequently_asked_questions#why_does_hashcat_not_work_with_my_kali_operating_system
royce hashcat 3 2,932 02-27-2018, 05:17 PM
    Thread: My practice attempt to decrypt a SHA-256 hash of an IP address
Post: RE: My practice attempt to decrypt a SHA-256 hash ...

I didn't write that paste, just grabbed it because it did the job. :) Works for me: Code: -- # Get the masks file. $ wget -O ip.masks https://pastebin.com/raw/4HQ6C8gG [...] # For effici...
royce hashcat 13 9,515 02-27-2018, 05:25 PM