hashcat Forum
How to find the last n characters of a password - 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: How to find the last n characters of a password (/thread-12220.html)



How to find the last n characters of a password - lalalalala12345 - 11-17-2024

Completely new, no experience with this tool.

I have a 12 character password for which I know the SHA1 hash and the first 7 characters.
How would I go about finding the rest of the password? I don't wish to use any word sets, just a straightforward brute force to find the last 5 characters.


RE: How to find the last n characters of a password - penguinkeeper - 11-17-2024

Command:
hashcat -m 100 YourHash -a 3 FIRST7C?a?a?a?a?a
Just replace "YourHash" of course with your hash and "FIRST7C" with the first 7 known characters. Hashcat should output "Status.....: Cracked" if it cracked your password and show your hash and the hash:plaintext above that


RE: How to find the last n characters of a password - lalalalala12345 - 11-17-2024

(11-17-2024, 05:01 AM)penguinkeeper Wrote: Command:
hashcat -m 100 YourHash -a 3 FIRST7C?a?a?a?a?a
Just replace "YourHash" of course with your hash and "FIRST7C" with the first 7 known characters. Hashcat should output "Status.....: Cracked" if it cracked your password and show your hash and the hash:plaintext above that

Thanks