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 [asc] Views Posted
    Thread: CISCO-IOS SHA256
Post: RE: CISCO-IOS SHA256

It's not allowed to post hashes. 1 week ban to revise the forum rules!
philsmd General Talk 1 3,518 04-04-2017, 05:04 PM
    Thread: I want to brute force incrementally with two digits appended
Post: RE: I want to brute force incrementally with two d...

You can use a .hcmask file for this (https://hashcat.net/wiki/mask_attack#hashcat_mask_files): Code: -- hashcat -m 0 -a 3 hash_file.txt mask_file.hcmask -- content of the file "mask_file.hcmas...
philsmd hashcat 1 2,173 04-04-2017, 06:55 PM
    Thread: Need help for this algoritm
Post: RE: Need help for this algoritm

For instance you could just use -m 120 = sha1($salt.$pass) (see https://hashcat.net/wiki/example_hashes) where the format of your hashes is: Code: -- sha1_hash:USERNAME: --
philsmd hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip 1 3,208 05-07-2017, 06:28 PM
    Thread: WPA2 Cracking With Password Less Then 8 Length Using rule Attack
Post: RE: WPA2 Cracking With Password Less Then 8 Length...

It seems that you also opened a hashcat github issue (https://github.com/hashcat/hashcat/issues/1222#issuecomment-292860873) and it was answered and closed. Please do not hesitate to use the forum se...
philsmd hashcat 1 2,947 04-10-2017, 09:41 AM
    Thread: Dictionary cache building
Post: RE: Dictionary cache building

Yeah, it's also mentioned within docs/changes.txt Code: -- * changes v3.30 -> v3.40: ... - Wordlists: Disable dictstat handling for hash-mode 3000 as it virtually creates words in the wordlist w...
philsmd hashcat 1 5,031 05-28-2017, 02:01 PM
    Thread: vmware Kernel library error
Post: RE: vmware Kernel library error

Why do you use pocl? Why do you use hashcat within a virtual machine (vmware)? My suggested solution is to not use VMs and to install the correct OpenCL driver for your hardware.
philsmd hashcat 1 2,685 05-30-2017, 08:51 PM
    Thread: WPA password that contains mixalphanumeric
Post: RE: WPA password that contains mixalphanumeric

use policygen.py from PACK (https://thesprawl.org/projects/pack/) The only thing you need to know here is that .hcmask files are needed and pack will generate them for you hashcat64.exe -m 2500 ...
philsmd hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip 1 3,317 06-17-2017, 09:06 PM
    Thread: Dictionary with known combinations
Post: RE: Dictionary with known combinations

if you really need to combine every word with every word, you should probably use combinator3 from hashcat.utils Code: -- combinator3 dict dict dict -- if the numbers are always at the end and "o...
philsmd hashcat 1 2,259 06-25-2017, 08:35 AM
    Thread: Support for MD5(MD5(SHA1(SHA1(MD5($pass)))))
Post: RE: Support for MD5(MD5(SHA1(SHA1(MD5($pass)))))

Closing this thread because it is a double post, see https://hashcat.net/forum/thread-6698.html (btw: this is not the way it works. If you do not know which is the correct forum section to post a n...
philsmd hashcat 1 2,737 07-08-2017, 12:57 PM
    Thread: Mask processor
Post: RE: Mask processor

If you read the --help output of maskprocessor it should be very clear: -q is used to limit the number of identical characters that are next to each other (-q x means that each character should be rep...
philsmd hashcat 1 2,214 07-04-2017, 03:37 PM
    Thread: cap2hccapx
Post: RE: cap2hccapx

You can use it to filter (i.e. limit) the number of "hashes" by generating a .hccapx file that only contains "hashes" involving only a very specific network name (ESSID). That means, if you know the n...
philsmd hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip 1 2,852 08-02-2017, 10:47 AM
    Thread: Hi, noob query.
Post: RE: Hi, noob query.

yes: https://hashcat.net/faq/#how_can_i_show_previously_cracked_passwords_and_output_them_in_a_specific_format_eg_emailpassword
philsmd hashcat 1 2,307 08-07-2017, 07:40 AM
    Thread: Hashcat.net binaries 7-zip compression ratio
Post: RE: Hashcat.net binaries 7-zip compression ratio

Just have a look at the file tools/package_bin.sh: https://github.com/hashcat/hashcat/blob/58d1dedd1e27aa3be5e0c6148b21099601253cf6/tools/package_bin.sh#L75
philsmd General Talk 1 2,848 08-20-2017, 08:05 AM
    Thread: A good hash ???
Post: RE: A good hash ???

We already explained this to you here: https://hashcat.net/forum/thread-6609-post-36090.html#pid36090 axcrypt2john.py includes the file name and hashcat doesn't need that. either use --username o...
philsmd hashcat 1 2,126 08-25-2017, 08:52 PM
    Thread: 15200 Blockchain, My Wallet, V2 help
Post: RE: 15200 Blockchain, My Wallet, V2 help

Use this python script to extract the "hash" from your wallet file: https://raw.githubusercontent.com/magnumripper/JohnTheRipper/bleeding-jumbo/run/blockchain2john.py Don't forget to either remove...
philsmd hashcat 1 3,046 08-26-2017, 07:38 AM
    Thread: Issues in cracking WPA2 with wordlist+mask
Post: RE: Issues in cracking WPA2 with wordlist+mask

The minimum password length for WPA/WPA2 is 8 bytes/characters. Hashcat will immediately reject (see the Rejected.........: line within your status) all passwords which do not adhere to this limita...
philsmd hashcat 1 3,201 09-04-2017, 10:45 AM
    Thread: Sanity check: "Must include chars" ruleset
Post: RE: Sanity check: "Must include chars" ruleset

If you are sure that the password length is just 10 and only 4 "random" chars, you could also use this approach. First, generate a dict (yes, this is normally not advicable, but for very small random ...
philsmd hashcat 1 2,053 10-26-2017, 07:28 AM
    Thread: Mix of digits, uppercase and a specific letter rule - help
Post: RE: Mix of digits, uppercase and a specific letter...

What you normally use in such a case is a mask attack: https://hashcat.net/wiki/doku.php?id=mask_attack Therefore, in hashcat's terminology this is not called a rule, but a mask attack (using attac...
philsmd hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip 1 2,952 11-14-2017, 09:06 AM
    Thread: what the hash is this?
Post: RE: what the hash is this?

-m 500 = md5crypt see also https://hashcat.net/wiki/example_hashes
philsmd General Talk 1 2,034 11-23-2017, 04:32 PM
    Thread: old TrueCrypt volumes
Post: RE: old TrueCrypt volumes

First of all to answer you question, you normally would use a mask attack like this: Code: -- hashcat64.exe -m 6222 -a 3 --increment --increment-min 9 J:\tc\mooi2009.tc -2 "XxZzJjTtUuQq?d;:,.!@#$%...
philsmd hashcat 1 2,455 11-18-2017, 05:29 PM