how to hash with hashcat
#1
How do you physically hash a plaintext password in hashcat so I can see the hashed ver not the plaintext ver.
#2
Hey, I'm not quite sure what your asking for here is a feature of hashcat. Are you looking for the format or some examples?

https://hashcat.net/wiki/doku.php?id=example_hashes
#3
(05-01-2017, 03:36 AM)rjmendez Wrote: Hey, I'm not quite sure what your asking for here is a feature of hashcat. Are you looking for the format or some examples?

https://hashcat.net/wiki/doku.php?id=example_hashes

I have a plaintext password and I want to see it in various different hash forms.
#4
You might have some luck looking for the specific hash type you want but I don't know of a tool that will generate all of the hashes that hashcat supports.

Something like this this might give you an idea of what I'm talking about. https://tobtu.com/lmntlm.php 
If your just trying to test to see if hashcat is working for you then the examples should help you out.
#5
(05-01-2017, 06:48 AM)rjmendez Wrote: You might have some luck looking for the specific hash type you want but I don't know of a tool that will generate all of the hashes that hashcat supports.

Something like this this might give you an idea of what I'm talking about. https://tobtu.com/lmntlm.php 
If your just trying to test to see if hashcat is working for you then the examples should help you out.

no I have a password and I want to see what this password looks like amungst different type of hash forms.
#6
That's not possible with hashcat.
#7
(05-01-2017, 03:51 AM)Hxsh Wrote:
(05-01-2017, 03:36 AM)rjmendez Wrote: Hey, I'm not quite sure what your asking for here is a feature of hashcat. Are you looking for the format or some examples?

https://hashcat.net/wiki/doku.php?id=example_hashes

I have a plaintext password and I want to see it in various different hash forms.

There are various sites for this.  Try http://www.whatsmyip.org/hash-generator/ 

You can find more sites by googling for "hash generator"

These sites are not affiliated with hashcat.net.  Use at your own risk.  Not available in all areas.  Must be ^^^ this tall to ride.  Some restrictions apply.  Professional driver on closed course.  Must be present to win.  See dealer for details.  

Cheers,
Jim B.
#8
The full Github hashcat distribution also has a "test.pl" Perl script in the tools/ directory that can hash quite a few formats.

$ echo -n 'password' | ./tools/test.pl passthrough 0
5f4dcc3b5aa765d61d8327deb882cf99

$ echo -n 'password' | ./tools/test.pl passthrough 100
5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8

$ echo -n 'password' | ./tools/test.pl passthrough 1500
57pK2EK2Kjgos
~