SHA256 - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: SHA256 (/thread-9002.html) |
SHA256 - fuukra00 - 02-29-2020 Hi, I tried several commands and fail,I need something strong decryption. SHA 256 Password possible ( 64 chars) may be something like this : a-z 0-9 Brute-force can someone make like a "script" that i could copy and just change my files or something cause everytime when i try i just get "hashfile is empty or corrupted" this was my command "hashcat64.exe -m 1400 -a 0 -o hash.txt cracked.txt" RE: SHA256 - Mem5 - 02-29-2020 You missed the bruteforce part: hashcat64.exe -m 1400 -a 3 -i --increment-min=1 --increment-max=64 -o result.txt -1 ?d?l hashes.txt ?1*64 times -1 ?d?l means digits + loweralpha ?1*64 times means repeat ?1 64 times (= increment max) But 64 chars (a-z 0-9) is not achievable within a reasonable time. |