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 [desc] Replies Views Posted
    Thread: Disable message about outdated version
Post: RE: Disable message about outdated version

hashcat was compiled with a newer (and incompatible) C library than the one installed on your system. You have two choices: upgrade your C library, or recompile hashcat for your old C library. This is...
epixoip Old oclHashcat Support 7 8,657 01-12-2016, 08:55 PM
    Thread: Newb Problem , Nvidia
Post: RE: Newb Problem , Nvidia

Yes KVM has alpha support for PCI-e passthru, but KVM is kernel-based virtualization, not host-based virtualization. drummachina, wtf does that have to do with anything presented here?
epixoip Old oclHashcat Support 8 9,992 01-12-2016, 11:24 PM
    Thread: Newb Problem , Nvidia
Post: RE: Newb Problem , Nvidia

No. "unRAID" uses KVM which is kernel-based virtualization, not host-based virtualization. Also makes no sense to pimp a NAS-oriented distribution for password cracking use.
epixoip Old oclHashcat Support 8 9,992 01-13-2016, 12:38 AM
    Thread: Disable message about outdated version
Post: RE: Disable message about outdated version

No, this has absolutely nothing to do with the timebomb.
epixoip Old oclHashcat Support 7 8,657 01-13-2016, 08:54 AM
    Thread: What kind of DES is this?
Post: RE: What kind of DES is this?

That's DES encryption. No, it is not currently supported by oclHashcat.
epixoip Old oclHashcat Support 1 3,087 01-14-2016, 08:04 PM
    Thread: ERROR: No NVidia compatible platform found
Post: RE: ERROR: No NVidia compatible platform found

Are you root?
epixoip Old oclHashcat Support 2 5,554 01-16-2016, 11:09 PM
    Thread: How about MSCHAP/MSCHAPv2?
Post: RE: How about MSCHAP?

Mmm, Windows is not my strong suit, but MSCHAP is the same as NetNTLM, is it not?
epixoip Old oclHashcat Support 5 11,596 01-18-2016, 06:04 AM
    Thread: How about MSCHAP/MSCHAPv2?
Post: RE: How about MSCHAP/MSCHAPv2?

Can you not re-arrange the output of whatever program you're using to match oclHashcat's expected input format? There's already a thread about this at https://hashcat.net/forum/thread-2563.html
epixoip Old oclHashcat Support 5 11,596 01-18-2016, 07:03 PM
    Thread: Error while running oclHashcat with ssh
Post: RE: Error while running oclHashcat with ssh

Definitely related to X, sounds like something is seriously misconfigured. The article at https://hashcat.net/wiki/doku.php?id=linux_server_howto is a bit outdated, but should contain enough clues to h...
epixoip Old oclHashcat Support 2 4,435 01-18-2016, 10:08 PM
    Thread: cudaHashcat64 Salted SHA1, Unknown Salt
Post: RE: cudaHashcat64 Salted SHA1, Unknown Salt

You forgot --hex-salt
epixoip Old oclHashcat Support 2 4,790 01-20-2016, 07:07 PM
    Thread: Rent GPU online
Post: RE: Rent GPU online

Sagitta does not (yet) rent GPUs.
epixoip Old oclHashcat Support 5 16,139 01-21-2016, 07:59 PM
    Thread: Rent GPU online
Post: RE: Rent GPU online

AWS GPUs are terrible for password cracking. Benchmarks have been posted previously before, but someone just posted benchmarks again today: https://hashcat.net/forum/thread-5071.html It can also be...
epixoip Old oclHashcat Support 5 16,139 01-21-2016, 11:17 PM
    Thread: What attack to use?
Post: RE: What attack to use?

You used the word "combination" in your post twice. That's a pretty big hint for what attack you want to run ;)
epixoip Old oclHashcat Support 14 15,432 01-22-2016, 06:57 AM
    Thread: What attack to use?
Post: RE: What attack to use?

look at combinator.bin and combinator3.bin from hashcat-utils
epixoip Old oclHashcat Support 14 15,432 01-22-2016, 11:21 AM
    Thread: What attack to use?
Post: RE: What attack to use?

Your thinking is too narrow. Let's say you wanted to do 3-way combinations of your 18-word wordlist (we'll call it 18words.txt). You have a couple different options. Option 1: Code: -- ./combinato...
epixoip Old oclHashcat Support 14 15,432 01-22-2016, 10:03 PM
    Thread: What attack to use?
Post: RE: What attack to use?

Umm.. no? If you were to combine 18words.txt 18-fold you'd end up with a file that's like 500M petabytes in size and you'd generate passwords that were 36-144 characters in length. So not only would i...
epixoip Old oclHashcat Support 14 15,432 01-23-2016, 12:17 AM
    Thread: What attack to use?
Post: RE: What attack to use?

If you want "abc" then combinator3.bin is precisely what you want... If your wordlist contains the following: Code: -- apple banana cocknose -- Then ''./combinator3.bin wordlist wordlist wordlist...
epixoip Old oclHashcat Support 14 15,432 01-23-2016, 02:20 AM
    Thread: What attack to use?
Post: RE: What attack to use?

Yeah that's not possible with hashcat or combinator.bin, you're going to have repeating words. And of course 8-14 you're going to start running into disk limitations real quick.
epixoip Old oclHashcat Support 14 15,432 01-23-2016, 10:21 AM
    Thread: Dictionary attack
Post: RE: Dictionary attack

combinator.bin rockyou.txt rockyou.txt >rockyou-combined.txt, then -a 6 rockyou-combined.txt ?d?d?d
epixoip Old oclHashcat Support 3 5,240 01-23-2016, 10:22 AM
    Thread: Dictionary attack
Post: RE: Dictionary attack

You can use rockyou to build such a list, just filter out the words that are too long & too short: Code: -- awk 'length < 7 && length > 4' rockyou.txt >rockyou-5_6.txt --
epixoip Old oclHashcat Support 3 5,240 01-23-2016, 11:10 PM