Advertisement
Guest User

hashes

a guest
Feb 10th, 2013
923
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.65 KB | None | 0 0
  1.  
  2. DES(Unix)
  3. Example: IvS7aeT4NzQPM
  4. Used in Linux and other similar OS.
  5. Length: 13 characters.
  6. Description: The first two characters are the salt (random characters; in our example the salt is the string "Iv"), then there follows the actual hash.
  7. Notes: [1] [2]
  8.  
  9. Domain Cached Credentials
  10. Example: Admin:b474d48cdfc4974d86ef4d24904cdd91
  11. Used for caching passwords of Windows domain.
  12. Length: 16 bytes.
  13. Algorithm: MD4(MD4(Unicode($pass)).Unicode(strtolower($username)))
  14. Note: [1]
  15.  
  16. MD5(Unix)
  17. Example: $1$12345678$XM4P3PrKBgKNnTaqG9P0T/
  18. Used in Linux and other similar OS.
  19. Length: 34 characters.
  20. Description: The hash begins with the $1$ signature, then there goes the salt (up to 8 random characters; in our example the salt is the string "12345678"), then there goes one more $ character, followed by the actual hash.
  21. Algorithm: Actually that is a loop calling the MD5 algorithm 2000 times.
  22. Notes: [1] [2]
  23.  
  24. MD5(APR)
  25. Example: $apr1$12345678$auQSX8Mvzt.tdBi4y6Xgj.
  26. Used in Linux and other similar OS.
  27. Length: 37 characters.
  28. Description: The hash begins with the $apr1$ signature, then there goes the salt (up to 8 random characters; in our example the salt is the string "12345678"), then there goes one more $ character, followed by the actual hash.
  29. Algorithm: Actually that is a loop calling the MD5 algorithm 2000 times.
  30. Notes: [1] [2]
  31.  
  32. MD5(phpBB3)
  33. Example: $H$9123456785DAERgALpsri.D9z3ht120
  34. Used in phpBB 3.x.x.
  35. Length: 34 characters.
  36. Description: The hash begins with the $H$ signature, then there goes one character (most often the number '9'), then there goes the salt (8 random characters; in our example the salt is the string "12345678"), followed by the actual hash.
  37. Algorithm: Actually that is a loop calling the MD5 algorithm 2048 times.
  38. Notes: [1] [2]
  39.  
  40. MD5(Wordpress)
  41. Example: $P$B123456780BhGFYSlUqGyE6ErKErL01
  42. Used in Wordpress.
  43. Length: 34 characters.
  44. Description: The hash begins with the $P$ signature, then there goes one character (most often the number 'B'), then there goes the salt (8 random characters; in our example the salt is the string "12345678"), followed by the actual hash.
  45. Algorithm: Actually that is a loop calling the MD5 algorithm 8192 times.
  46. Notes: [1] [2]
  47.  
  48. MySQL
  49. Example: 606717496665bcba
  50. Used in the old versions of MySQL.
  51. Length: 8 bytes.
  52. Description: The hash consists of two DWORDs, each not exceeding the value of 0x7fffffff.
  53.  
  54. MySQL5
  55. Example: *E6CC90B878B948C35E92B003C792C46C58C4AF40
  56. Used in the new versions of MySQL.
  57. Length: 20 bytes.
  58. Algorithm: SHA-1(SHA-1($pass))
  59. Note: The hashes are to be loaded to the program without the asterisk that stands in the beginning of each hash.
  60.  
  61. RAdmin v2.x
  62. Example: 5e32cceaafed5cc80866737dfb212d7f
  63. Used in the application Remote Administrator v2.x.
  64. Length: 16 bytes.
  65. Algorithm: The password is padded with zeros to the length of 100 bytes, then that entire string is hashed with the MD5 algorithm.
  66.  
  67. MD5
  68. Example: c4ca4238a0b923820dcc509a6f75849b
  69. Used in phpBB v2.x, Joomla version below 1.0.13 and many other forums and CMS.
  70. Length: 16 bytes.
  71. Algorithm: Same as the md5() function in PHP.
  72.  
  73. md5($pass.$salt)
  74. Example: 6f04f0d75f6870858bae14ac0b6d9f73:1234
  75. Used in WB News, Joomla version 1.0.13 and higher.
  76. Length: 16 bytes.
  77. Note: [1]
  78.  
  79. md5($salt.$pass)
  80. Example: f190ce9ac8445d249747cab7be43f7d5:12
  81. Used in osCommerce, AEF, Gallery and other CMS.
  82. Length: 16 bytes.
  83. Note: [1]
  84.  
  85. md5(md5($pass))
  86. Example: 28c8edde3d61a0411511d3b1866f0636
  87. Used in e107, DLE, AVE, Diferior, Koobi and other CMS.
  88. Length: 16 bytes.
  89.  
  90. md5(md5($pass).$salt)
  91. Example: 6011527690eddca23580955c216b1fd2:wQ6
  92. Used in vBulletin, IceBB.
  93. Length: 16 bytes.
  94. Notes: [1] [3] [4]
  95.  
  96. md5(md5($salt).md5($pass))
  97. Example: 81f87275dd805aa018df8befe09fe9f8:wH6_S
  98. Used in IPB.
  99. Length: 16 bytes.
  100. Notes: [1] [3]
  101.  
  102. md5(md5($salt).$pass)
  103. Example: 816a14db44578f516cbaef25bd8d8296:1234
  104. Used in MyBB.
  105. Length: 16 bytes.
  106. Note: [1]
  107.  
  108. md5($salt.$pass.$salt)
  109. Example: a3bc9e11fddf4fef4deea11e33668eab:1234
  110. Used in TBDev.
  111. Length: 16 bytes.
  112. Note: [1]
  113.  
  114. md5($salt.md5($salt.$pass))
  115. Example: 1d715e52285e5a6b546e442792652c8a:1234
  116. Used in DLP.
  117. Length: 16 bytes.
  118. Note: [1]
  119.  
  120. SHA-1
  121. Example: 356a192b7913b04c54574d18c28d46e6395428ab
  122. Used in many forums and CMS.
  123. Length: 20 bytes.
  124. Algorithm: Same as the sha1() function in PHP.
  125.  
  126. sha1(strtolower($username).$pass)
  127. Example: Admin:6c7ca345f63f835cb353ff15bd6c5e052ec08e7a
  128. Used in SMF.
  129. Length: 20 bytes.
  130. Note: [1]
  131.  
  132. sha1($salt.sha1($salt.sha1($pass)))
  133. Example: cd37bfbf68d198d11d39a67158c0c9cddf34573b:1234
  134. Used in Woltlab BB.
  135. Length: 20 bytes.
  136. Note: [1]
  137.  
  138. SHA-256(Unix)
  139. Example: $5$12345678$jBWLgeYZbSvREnuBr5s3gp13vqiKSNK1rkTk9zYE1v0
  140. Used in Linux and other similar OS.
  141. Length: 55 characters.
  142. Description: The hash begins with the $5$ signature, then there goes the salt (up to 8 random characters; in our example the salt is the string "12345678"), then there goes one more $ character, followed by the actual hash.
  143. Algorithm: Actually that is a loop calling the SHA-256 algorithm 5000 times.
  144. Notes: [1] [2]
  145.  
  146. SHA-512(Unix)
  147. Example: $6$12345678$U6Yv5E1lWn6mEESzKen42o6rbEmFNLlq6Ik9X3reMXY3doKEuxrcDohKUx0Oxf44aeTI​​xGEjssvtT1aKyZHjs
  148. Used in Linux and other similar OS.
  149. Length: 98 characters.
  150. Description: The hash begins with the $6$ signature, then there goes the salt (up to 8 random characters; in our example the salt is the string "12345678"), then there goes one more $ character, followed by the actual hash.
  151. Algorithm: Actually that is a loop calling the SHA-512 algorithm 5000 times.
  152. Notes: [1] [2]
  153.  
  154. -------------------------------------------------
  155. Notes:
  156.  
  157. [1] Since the hashing requires not only a password but also a salt (or a user name), which is unique for each user, the attack speed for such hashes will decline proportionally to their count (for example, attacking 100 hashes will go 100 times slower than attacking one hash).
  158.  
  159. [2] The hash is to be loaded to the program in full, to the "Hash" column - the program will automatically extract the salt and other required data from it.
  160.  
  161. [3] The ':' character can be used as salt; however, since it is used by default for separating hash and salt in PasswordsPro, it is recommended that you use a different character for separating fields; e.g., space.
  162.  
  163. [4] Salt can contain special characters - single or double quotes, as well as backslash, which are preceded (after obtaining dumps from MySQL databases) by an additional backslash, which is to be removed manually. For example, the salt to be loaded to the program would be a'4 instead of a\'4, as well as the salts a"4 instead of a\"4 and a\4 instead of a\\4.
  164.  
  165. --------------------------------------------------------
  166. Text is added by Rynaldo from http://CrackHackForum.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement