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: Issue with --show and colon character
Post: RE: Issue with --show and colon character

hmm, this is an interesting case and the reason why it's behaving like this is that hashcat only checks for the last "separator" in the potfile, see: https://github.com/hashcat/hashcat/blob/067ffa9d64...
philsmd hashcat 5 3,731 08-19-2018, 11:47 AM
    Thread: Issue with --show and colon character
Post: RE: Issue with --show and colon character

I think you are mixing up the outfile (--outfile or short -o) with the hashcat.potfile. The former will change whenever you use --outfile-autohex-disable, but for the latter the --outfile-autohex-disa...
philsmd hashcat 5 3,731 08-19-2018, 06:12 PM
    Thread: md5(md5($pass).$salt)
Post: RE: md5(md5($pass).$salt)

This is the algo used by vbulletin, see the --help output: hashcat supports: -m 2611 = vBulletin < v3.8.5 and -m 2711 = vBulletin >= v3.8.5 the difference is mainly the supported salt length (s...
philsmd hashcat 1 2,176 08-20-2018, 09:48 AM
    Thread: --show takes forever to finish
Post: RE: --show takes forever to finish

it depends mainly on the size of the hashcat.potfile and of course also to some extend on the hashes.txt file (note there can be cracks assigned to several users, especially if unsalted hashes are use...
philsmd hashcat 6 3,802 08-21-2018, 10:33 PM
    Thread: Issue with --show and colon character
Post: RE: Issue with --show and colon character

I think you indeed found the main root of the problem. The potfile read/write functions should ignore the --outfile-autohex setting. See https://github.com/hashcat/hashcat/blob/fe04ccc1fd61b040ebee5...
philsmd hashcat 5 3,731 08-22-2018, 02:57 PM
    Thread: --show takes forever to finish
Post: RE: --show takes forever to finish

what's your memory usage and CPU usage during the --show --username run ? High memory, high CPU? We might need to troubleshoot this in detail but I guess we need to have the files (or similar files...
philsmd hashcat 6 3,802 08-22-2018, 05:07 PM
    Thread: How to save progress with PRINCE ?
Post: RE: How to save progress with PRINCE ?

you should have a file called pp.save automatically saved into the current directory (if you didn't provide --save-pos-disable). just copy the number within that file to the -s parameter therefore...
philsmd hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip 4 3,620 08-22-2018, 06:31 PM
    Thread: --show takes forever to finish
Post: RE: --show takes forever to finish

I just tested with a hash file and potfile with 1000000 entries and it's very fast on my system. Maybe you can do the same and report back. This is how I generated the lists: Code: -- #!/usr/b...
philsmd hashcat 6 3,802 08-23-2018, 01:33 PM
    Thread: --increment option
Post: RE: --increment option

yes, your hcmask file should look like this: Code: -- ?l ?l?d ?l?l?d ?l?l?l?d ?l?l?l?l?d ?l?l?l?l?l?d ?l?l?l?l?l?l?d ?l?l?l?l?l?l?l?d ?l?l?l?l?l?l?l?l?d -- references: https://hashcat...
philsmd hashcat 2 2,441 08-24-2018, 03:38 PM
    Thread: Replace rule - but not all at once
Post: RE: Replace rule - but not all at once

see the rules page on the wiki: https://hashcat.net/wiki/doku.php?id=rule_based_attack#using_p_nth_instance_of_a_character_with_positional_rules
philsmd hashcat 4 3,115 08-28-2018, 05:03 PM
    Thread: Replace rule - but not all at once
Post: RE: Replace rule - but not all at once

multiple substitutions should be no problem because currently a single rule could consist of up to 31 rule functions: https://hashcat.net/wiki/doku.php?id=rule_based_attack#limitations The only pro...
philsmd hashcat 4 3,115 08-29-2018, 09:55 AM
    Thread: NTLM vs WPA/WPA2 cracking
Post: RE: NTLM vs WPA/WPA2 cracking

-m 2500 = WPA/WPA2 has a minimum password length of 8 hashcat will reject all input words immediately if they are < 8 (even before the rules are applied, because the rule engine is on-GPU and doesn't...
philsmd hashcat 19 9,937 08-30-2018, 07:25 PM
    Thread: NTLM vs WPA/WPA2 cracking
Post: RE: NTLM vs WPA/WPA2 cracking

I already mentioned in my previous post that you can easily workaround this limitation with either pipes (stdin mode) or -j/-k single rules. There are some considerations to develop/implement/allow...
philsmd hashcat 19 9,937 08-31-2018, 06:55 PM
    Thread: NVidia RTX 2080
Post: RE: NVidia RTX 2080

GrepItAll Wrote: (08-31-2018, 02:40 PM) -- I have been running 4 x 1080 Ti Asus Turbo cards since September nearly 24/7 (brief downtimes due to hardware relocation) as it was very difficult to purcha...
philsmd Hardware 93 83,310 08-31-2018, 07:13 PM
    Thread: NTLM vs WPA/WPA2 cracking
Post: RE: NTLM vs WPA/WPA2 cracking

of course there is reason to reject passwords < 8 for WPA/WPA2 because the algorithm only allows a minimum length of 8. The problem is that if everything happens on GPU (rule engine + hashing/attack) ...
philsmd hashcat 19 9,937 08-31-2018, 08:30 PM
    Thread: NTLM vs WPA/WPA2 cracking
Post: RE: NTLM vs WPA/WPA2 cracking

by stdin/pipe mode I meant this: Code: -- hashcat --stdout -r rules/rockyou-30000.rule test3.txt | hashcat64.bin -m 2500 test.hccapx -- and undeath is of course correct, there are edge cases t...
philsmd hashcat 19 9,937 08-31-2018, 09:46 PM
    Thread: No duplicated characters when cracking wpa2 password
Post: RE: No duplicated characters when cracking wpa2 pa...

you also can't really pipe like this: command1 | cd && command2 you need to do it like this: command1 | command2 therefore something like this: Code: -- cd C:\Users\Alexandre\Downloads\h...
philsmd General Talk 7 5,193 09-29-2018, 11:50 AM
    Thread: Parameters for crack ETH wallet password
Post: RE: Parameters for crack ETH wallet password

before starting a long running cracking job I would suggest to first make sure that your restrictions about the password candidates are correct and that your expected/test password candidates are even...
philsmd hashcat 4 3,253 09-30-2018, 09:12 AM
    Thread: No duplicated characters when cracking wpa2 password
Post: RE: No duplicated characters when cracking wpa2 pa...

the command I told you to use was different: 1. enter the hashcat folder within the cmd: Code: -- cd C:\Users\Alexandre\Downloads\hashcat-4.2.1\ -- 2. afterwards run hashcat within that speci...
philsmd General Talk 7 5,193 09-30-2018, 10:46 AM
    Thread: PBKDF2-SHA256 Signature unmatched error
Post: RE: PBKDF2-SHA256 Signature unmatched error

hashcat expects this format: https://hashcat.net/wiki/doku.php?id=example_hashes (search for 10900) "sha256", ":", iterations, ":", base64 salt, ":", base64 digest both salt and the "hash" (dige...
philsmd hashcat 5 5,467 10-03-2018, 07:58 PM