Friday, August 21, 2020

How To Crack A Password

What is Password Cracking?

Password cracking is the process of attempting to gain Unauthorized access to restricted systems using common passwords or algorithms that guess passwords. In other words, it's an art of obtaining the correct password that gives access to a system protected by an authentication method.

Password cracking employs a number of techniques to achieve its goals. The cracking process can involve either comparing stored passwords against word list or use algorithms to generate passwords that match

How to crack password of an Application

In this Tutorial, we will introduce you to the common password cracking techniques and the countermeasures you can implement to protect systems against such attacks.

Topics covered in this tutorial

What is password strength?

Password strength is the measure of a password's efficiency to resist password cracking attacks. The strength of a password is determined by;

  • Length: the number of characters the password contains.
  • Complexity: does it use a combination of letters, numbers, and symbol?
  • Unpredictability: is it something that can be guessed easily by an attacker?

Let's now look at a practical example. We will use three passwords namely

1.  password

2.  password1

3.  #password1$

 For this example, we will use the password strength indicator of Cpanel when creating passwords. The images below show the password strengths of each of the above-listed passwords.

How to crack password of an Application

Note: the password used is password the strength is 1, and it's very weak.

How to crack password of an Application

Note: the password used is password1 the strength is 28, and it's still weak.

How to crack password of an Application

Note: The password used is #password1$ the strength is 60 and it's strong.

The higher the strength number, better the password.

Let's suppose that we have to store our above passwords using md5 encryption. We will use an online md5 hash generator to convert our passwords into md5 hashes.

 The table below shows the password hashes

PasswordMD5 HashCpanel Strength Indicator
password5f4dcc3b5aa765d61d8327deb882cf991
password17c6a180b36896a0a8c02787eeafb0e4c28
#password1$29e08fb7103c327d68327f23d8d9256c60


 We will now use http://www.md5this.com/ to crack the above hashes. The images below show the password cracking results for the above passwords.

How to crack password of an Application

How to crack password of an Application

How to crack password of an Application

As you can see from the above results, we managed to crack the first and second passwords that had lower strength numbers. We didn't manage to crack the third password which was longer, complex and unpredictable. It had a higher strength number.

Password cracking techniques

There are a number of techniques that can be used to crack passwords. We will describe the most commonly used ones below;

  • Dictionary attack– This method involves the use of a wordlist to compare against user passwords.
  • Brute force attack– This method is similar to the dictionary attack. Brute force attacks use algorithms that combine alpha-numeric characters and symbols to come up with passwords for the attack. For example, a password of the value "password" can also be tried as p@$$word using the brute force attack.
  • Rainbow table attack– This method uses pre-computed hashes. Let's assume that we have a database which stores passwords as md5 hashes. We can create another database that has md5 hashes of commonly used passwords. We can then compare the password hash we have against the stored hashes in the database. If a match is found, then we have the password.
  • Guess– As the name suggests, this method involves guessing. Passwords such as qwerty, password, admin, etc. are commonly used or set as default passwords. If they have not been changed or if the user is careless when selecting passwords, then they can be easily compromised.
  • Spidering– Most organizations use passwords that contain company information. This information can be found on company websites, social media such as facebook, twitter, etc. Spidering gathers information from these sources to come up with word lists. The word list is then used to perform dictionary and brute force attacks.

Spidering sample dictionary attack wordlist

1976 <founder birth year>

smith jones <founder name>

acme <company name/initials>

built|to|last <words in company vision/mission>

golfing|chess|soccer <founders hobbies

Password cracking tool

These are software programs that are used to crack user passwords. We already looked at a similar tool in the above example on password strengths. The website www.md5this.com uses a rainbow table to crack passwords. We will now look at some of the commonly used tools

John the Ripper

John the Ripper uses the command prompt to crack passwords. This makes it suitable for advanced users who are comfortable working with commands. It uses to wordlist to crack passwords. The program is free, but the word list has to be bought. It has free alternative word lists that you can use. Visit the product website http://www.openwall.com/john/ for more information and how to use it.

Cain & Abel

Cain & Abel runs on windows. It is used to recover passwords for user accounts, recovery of Microsoft Access passwords; networking sniffing, etc. Unlike John the Ripper, Cain & Abel uses a graphic user interface. It is very common among newbies and script kiddies because of its simplicity of use. Visit the product website http://www.softpedia.com/get/Security/Decrypting-Decoding/Cain-and-Abel.shtml for more information and how to use it.

Ophcrack

Ophcrack is a cross-platform Windows password cracker that uses rainbow tables to crack passwords. It runs on Windows, Linux and Mac OS. It also has a module for brute force attacks among other features. Visit the product website http://ophcrack.sourceforge.net/  for more information and how to use it.

Password Cracking Counter Measures

  • An organization can use the following methods to reduce the chances of the passwords been cracked
  • Avoid short and easily predicable passwords
  • Avoid using passwords with predictable patterns such as 11552266.
  • Passwords stored in the database must always be encrypted. For md5 encryptions, its better to salt the password hashes before storing them. Salting involves adding some word to the provided password before creating the hash.
  • Most registration systems have password strength indicators, organizations must adopt policies that favor high password strength numbers.

Hacking Activity: Hack Now!

In this practical scenario, we are going to crack Windows account with a simple passwordWindows uses NTLM hashes to encrypt passwords. We will use the NTLM cracker tool in Cain and Abel to do that.

Cain and Abel cracker can be used to crack passwords using;

  • Dictionary attack
  • Brute force
  • Cryptanalysis

We will use the dictionary attack in this example. You will need to download the dictionary attack wordlist here 10k-Most-Common.zip

For this demonstration, we have created an account called Accounts with the password qwerty on Windows 7.

How to crack password of an Application

Password cracking steps

  • Open Cain and Abel, you will get the following main screen

How to crack password of an Application

  • Make sure the cracker tab is selected as shown above
  • Click on the Add button on the toolbar.

How to crack password of an Application

  • The following dialog window will appear

How to crack password of an Application

  • The local user accounts will be displayed as follows. Note the results shown will be of the user accounts on your local machine.

How to crack password of an Application

  • Right click on the account you want to crack. For this tutorial, we will use Accounts as the user account.

How to crack password of an Application

  • The following screen will appear

How to crack password of an Application

  • Right click on the dictionary section and select Add to list menu as shown above
  • Browse to the 10k most common.txt file that you just downloaded

How to crack password of an Application

  • Click on start button
  • If the user used a simple password like qwerty, then you should be able to get the following results.

How to crack password of an Application

  • Note: the time taken to crack the password depends on the password strength, complexity and processing power of your machine.
  • If the password is not cracked using a dictionary attack, you can try brute force or cryptanalysis attacks.

Summary

  • Password cracking is the art of recovering stored or transmitted passwords.
  • Password strength is determined by the length, complexity, and unpredictability of a password value.
  • Common password techniques include dictionary attacks, brute force, rainbow tables, spidering and cracking.
  • Password cracking tools simplify the process of cracking passwords.
@EVERYTHING NT
More information

  1. Nsa Hack Tools Download
  2. Install Pentest Tools Ubuntu
  3. Pentest Tools Download
  4. Hacker Hardware Tools
  5. Hacker Tools Github
  6. Ethical Hacker Tools
  7. Pentest Tools For Mac
  8. Hack Tools Mac
  9. Hacking Tools Windows
  10. Pentest Tools Tcp Port Scanner
  11. Growth Hacker Tools
  12. Pentest Tools Website
  13. World No 1 Hacker Software
  14. Hack Tools Mac
  15. Hacker Tools For Windows
  16. Best Hacking Tools 2019
  17. Hack Tools For Windows
  18. Pentest Tools Download
  19. Github Hacking Tools
  20. New Hacker Tools
  21. Pentest Tools Online
  22. Hacking Tools Hardware
  23. What Are Hacking Tools
  24. Pentest Tools Port Scanner
  25. Pentest Tools Review
  26. Easy Hack Tools
  27. Termux Hacking Tools 2019
  28. Hacking Tools Windows 10
  29. Hacking Tools Kit
  30. Hack Tools Mac
  31. Hacking Tools For Beginners
  32. Hack Tools 2019
  33. Github Hacking Tools
  34. Hacking Tools Mac
  35. New Hack Tools
  36. Hacker Tools Apk Download
  37. Hackers Toolbox
  38. Easy Hack Tools
  39. Hacker Techniques Tools And Incident Handling
  40. Black Hat Hacker Tools
  41. Pentest Tools Free
  42. Hacking Tools Free Download
  43. Hacking Tools For Games
  44. Hacker Tools Github
  45. Hacking Tools Github
  46. Hack Tools Github
  47. Hack Tools Download
  48. Nsa Hack Tools
  49. Hack And Tools
  50. Hack Tools For Games
  51. Hacker Tool Kit
  52. Hak5 Tools
  53. Hacker Techniques Tools And Incident Handling
  54. Physical Pentest Tools
  55. Hack App
  56. Hackrf Tools
  57. Hackers Toolbox
  58. Hacker Tools For Ios
  59. Pentest Tools Apk
  60. Hack Tools 2019
  61. Hacking Tools Name
  62. Pentest Tools Review
  63. Github Hacking Tools
  64. Tools Used For Hacking
  65. Hacker Tools Github
  66. Hacker Hardware Tools
  67. Hacker
  68. Pentest Tools Github
  69. Pentest Tools Windows
  70. Hacker Tools For Pc
  71. Hacking Tools Hardware
  72. Hacker Hardware Tools
  73. Bluetooth Hacking Tools Kali
  74. Hack Tools Online
  75. Pentest Reporting Tools
  76. Hacker Tools Online
  77. Hacking Tools Github
  78. New Hacker Tools
  79. Pentest Tools Framework
  80. Hack Tools Github
  81. Easy Hack Tools
  82. Hacking Tools For Windows 7
  83. Hacker Tools For Pc
  84. Pentest Tools Linux
  85. Hacking Tools Online
  86. Black Hat Hacker Tools
  87. Hacking Tools Windows 10
  88. What Are Hacking Tools
  89. Hackers Toolbox
  90. Pentest Automation Tools
  91. Hacker Tools Hardware
  92. Hack Tools Mac
  93. Pentest Recon Tools
  94. Best Hacking Tools 2020
  95. Hacker Hardware Tools
  96. Hacker Security Tools
  97. Blackhat Hacker Tools
  98. Hack Tools For Games
  99. Hacker Tool Kit
  100. Best Pentesting Tools 2018
  101. Pentest Tools Url Fuzzer
  102. Hacking Tools For Windows
  103. Hacker Tools 2019
  104. Hacker Tools For Mac
  105. Hacking Tools Free Download
  106. Hacking Tools Software
  107. Termux Hacking Tools 2019
  108. Free Pentest Tools For Windows
  109. Growth Hacker Tools
  110. Hack Tools For Games
  111. Pentest Tools Linux
  112. Hackrf Tools
  113. Pentest Recon Tools
  114. Hacker Security Tools
  115. Hacker Tools Apk Download
  116. Hacking Tools Usb
  117. Pentest Tools Windows
  118. Hacker Tools For Pc
  119. Hacker Tool Kit
  120. Hackrf Tools
  121. Hack Tools For Mac
  122. Tools For Hacker
  123. Hacking Tools Windows
  124. Hacker Tools Github
  125. Hacking Tools
  126. Hack Tool Apk
  127. Hacking Tools For Beginners
  128. Hacking Tools Usb
  129. Hacker Tools 2020
  130. Hack Tools Mac
  131. Github Hacking Tools
  132. Pentest Automation Tools
  133. Hacker Tools Apk Download
  134. Hacker Tools For Mac
  135. Best Hacking Tools 2019
  136. Pentest Tools For Android
  137. Hacker Tools Free Download
  138. Hacker Search Tools
  139. Hack Tools
  140. Hacking Tools For Kali Linux
  141. Pentest Tools Website
  142. World No 1 Hacker Software
  143. Hacker Tools
  144. Hack Tools For Ubuntu
  145. Pentest Tools Online
  146. Hacker Tools Hardware
  147. Growth Hacker Tools
  148. Pentest Tools Android
  149. Pentest Tools List
  150. Hacking Tools And Software
  151. Best Hacking Tools 2020

No comments:

Post a Comment