Sign in to follow this  
Hans420

[Tutorial] Cracking Hashes with JtR

Recommended Posts

[align=center]

JtR.png

Cracking Hashes with JtR

 

[hide]What is John?

John the Ripper/John, is an open source cracking tool provided by Openwall.

It's a very popular tool that comes pre installed on the Kali distro. It's easy to use, powerful, and it's free.

 

Download John Jumbo

Official Site | Windows

*Installation on Linux varies depending on your package manager.

 

How Does it Work?

Hashes are strings of data generated from a hash function.

The hash function takes the key and creates a hash based off that key.

The same key will produce the same result each time it's run through the function.

It's meant to be irreversible, unlike encryption. However, by comparing known hash values to a hash, you can determine the key.

 

Cracking Hashes with Jtr

*From here on out terminal refers to command prompt as-well.

 

Launch your terminal. Navigate to the directory where you have John stored.

Enter the run folder. From here you can use John. Enter 'john' to confirm you're actually in the right folder.

Save your hash somewhere inside the run folder e.g. 'folder/_hashes/1.hash'.

 

Now that we're setup, let's begin cracking. Here are a couple options for execution:

In my example I'm cracking an md5 hash, determine what type of hash you're cracking and find the proper format.

Wordlist

john --wordlist=password.lst --format=raw-md5 _hashes/1.hash

 

Bruteforce

john --incremental --format=raw-md5 _hashes/1.hash

 

sample.gif

 

*While cracking you can press the space bar to see the last made attempt.

 

Keep in mind some hashes have a salt included. e.g. 'p455woRd + 5ALTEdH4sH';

The likeness of you cracking a password becomes less the more complex it is.

[/hide]

 

Similar Tutorials:

[Tutorial] Cracking ZIP/RAR Archives with John the Ripper

[/align]

Share this post


Link to post
Share on other sites

[align=center]

JtR.png

Cracking Hashes with JtR

 

 

[/align]

 

lets see if it's work

  • Like 1

Share this post


Link to post
Share on other sites

This is a bump

Share this post


Link to post
Share on other sites

This is a bump

Share this post


Link to post
Share on other sites

Thanks you got just what i need xD appreciated

Share this post


Link to post
Share on other sites

This is a bump

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this