Type of Hash

1 . DES ( Unix )
[ + ] Used in Linux and the like .
[ + ] Length : 13 Characters .
[ + ] Description : The first two characters are the salt ( random characters , in our example the salt is string "Iv.") Followed by the hash .
[ + ] Example : IvS7aeT4NzQPM

2 . Domain Cached Credentials
[ + ] Used to cache the windows domain passwords .
[ + ] Length : 16 bytes (32 characters)
[ + ] Algorithm : MD4(MD4(Unicode($pass)). Unicode(strtolower($username)))
[ + ] Example : Admin : b474d48cdfc4974d86ef4d24904cdd91


3 . MD5 ( Unix )
[ + ] Used in Linux .
[ + ] Length : 34 Characters .
[ + ] Description : This hash start by $1$ and then proceed with the salt (up to 8 random characters , in our example saltnya is the string " 12345678 ") then followed with one more $ character , followed by the hash .
[ + ] Algorithm : Actually this is a loop that calls the md5 algorithm 2,000 times .
[ + ] Example : $1$$12345678 XM4P3PrKBgKNnTaqG9P0T /

4 . MD5 ( APR )
[ + ] Used in Linux.
[ + ] Length : 37 Characters .
[ + ] Description : This hash start by $apr1$ , and then proceed with the salt (up to 8 random characters , in our example the salt is the string " 12345678 ") , then followed by one more $ character , followed by the hash .
[ + ] Algorithm : Actually this is a loop that calls the md5 algorithm 2,000 times .
[ + ] Example : $apr1$12345678$auQSX8Mvzt.tdBi4y6Xgj.

5 . MD5 ( phpBB3 )
[ + ] Used in phpBB 3.x.x.
[ + ] Length : 37 Characters .
[ + ] Decryption : This hash start by $H$ and then followed by a single character (most often the number " 9 ") then followed with salt (8 random characters , in our example saltnya is the string " 12345678 ") , then followed by the hash .
[ + ] Algorithm : Actually this is a loop that calls the md5 algorithm as much as 2048 times .
[ + ] Example : $H$9123456785DAERgALpsri.D9z3ht120

6 . MD5 ( Wordpress )
[ + ] Used in Wordpress .
[ + ] Length : 34 Characters .
[ + ] Description : This hash start by $P$, then followed with a single character (Most often the letter " B " ) , followed by salt ( 8 random characters , in our example the salt is string " 12345678 ") , then followed by hash .
[ + ] Algorithm : Actually this is a loop that calls the md5 algorithm as much as 8192 times .
[ + ] Example : $P$B123456780BhGFYSlUqGyE6ErKErL01

7 . MySQL
[ + ] Used in older versions of MySQL .
[ + ] Length : 8 bytes .
[ + ] Description : Hash which consists of two DWORD , each of which doesn’t exceed the value of 0x7fffffff .
[ + ] Example : 606717496665bcba

8 . MySQL5
[ + ] Used in the new version of MySQL .
[ + ] Length : 20 bytes .
[ + ] Algorithm : SHA-1(SHA-1($pass))
[ + ] Example : *E6CC90B878B948C35E92B003C792C46C58C4AF40
[ + ] Note : Hash must be loaded into the program without an asterisk (*) are contained in the beginning of each hash .

9 . Radmin v2.x
[ + ] Used in the application Remote Administrator v2.x.
[ + ] Length : 16 bytes .
[ + ] Algorithm : Password filled with 0 to a length of 100 bytes , then the entire string given MD5 hash algorithm .
[ + ] Example : 5e32cceaafed5cc80866737dfb212d7f

10 . MD5
[ + ] Used in phpBB v2.x , Joomla version below 1.0.13 and many forums and CMS .
[ + ] Length : 16 bytes .
[ + ] Algorithm : same as function md5() in php .
[ + ] Example : c4ca4238a0b923820dcc509a6f75849b

11 . MD5($pass.$salt)
[ + ] Used in WB News , Joomla version 1.0.13 and above .
[ + ] Length : 16 bytes
[ + ] Example : 6f04f0d75f6870858bae14ac0b6d9f73:1234

12 . MD5($salt.$pass)
[ + ] Used in osCommerce , AEF , Gallery and several CMS .
[ + ] Length : 16 bytes .
[ + ] Example : f190ce9ac8445d249747cab7be43f7d5:12

13 . MD5(md5($pass))
[ + ] Used in e107 , DLE , AVE , Diferior , Koobi and some CMS .
[ + ] Length : 16 bytes .
[ + ] Example : 28c8edde3d61a0411511d3b1866f0636

14 . MD5(md5($pass).$salt)
[ + ] Used in vBulletin , IceBB .
[ + ] Long ; 16 bytes .
[ + ] Example : 6011527690eddca23580955c216b1fd2 : wQ6

15 . MD5(md5($salt).md5($pass))
[ + ] Used in IPB .
[ + ] Length : 16 bytes .
[ + ] Example : 81f87275dd805aa018df8befe09fe9f8:wH6_S

16 . MD5(md5($salt).$pass)
[ + ] Used in MyBB .
[ + ] Length : 16 bytes .
[ + ] Example : 816a14db44578f516cbaef25bd8d8296:1234

17 . MD5($salt.$pass.$salt)
[ + ] Used in TBDev .
[ + ] Length : 16 bytes .
[ + ] Example : a3bc9e11fddf4fef4deea11e33668eab:1234

18 . MD5($salt.md5($salt.$pass))
[ + ] Used in DLP .
[ + ] Length : 16 bytes .
[ + ] Example : 1d715e52285e5a6b546e442792652c8a:1234

19 . SHA-1
[ + ] Used in many forums and CMS .
[ + ] Length : 20 bytes
[ + ] Algorithm : Same as sha1() function in PHP .
[ + ] Example : 356a192b7913b04c54574d18c28d46e6395428ab

20 . SHA1(strtolower($username).$pass)
[ + ] Used in SMF
[ + ] Length : 20 bytes .
[ + ] Example : Admin:6c7ca345f63f835cb353ff15bd6c5e052ec08e7a

21 . SHA1($salt.sha1($salt.sha1($pass)))
[ + ] Used in Woltlab BB
[ + ] Length : 20 bytes
[ + ] Example : cd37bfbf68d198d11d39a67158c0c9cddf34573b:1234

22 . SHA-256(Unix)
[ + ] Used in Linux.
[ + ] Length : 55 Characters .
[ + ] Description : This hash start by a $5$ , then followed by the salt (up to 8 random characters , in our example saltnya is the string " 12345678 ") , then followed by one more $ character, followed by the actual hash .
[ + ] Algorithm : Actually this is a loop calling the SHA - 256 algorithm 5000 times .
[ + ] Example: $5$12345678$jBWLgeYZbSvREnuBr5s3gp13vqi...

23 . SHA-512(Unix)
[ + ] Used in Linux and the like .
[ + ] Length : 98 Characters .
[ + ] Description : This hash startx by $6$ , then followed by the salt (up to 8 random characters , we emulated saltnya is the string " 12345678 ") , then followed by one more $ character , followed by the actual hash .
[ + ] Algorithm : Actually this is a loop calling the SHA - 512 algorithm 5000 times .
[ + ] Example: $6$12345678$U6Yv5E1lWn6mEESzKen42o6rbEm...

One Response so far.

  1. Blackjack | Casino | Online Gaming in Colorado
    Learn more about Blackjack in Colorado. Learn more 평택 출장마사지 about 영주 출장마사지 the games, 남양주 출장안마 ways to play, and 용인 출장안마 the best bonuses 부천 출장샵 and free spins on the Casino

Leave a Reply


[ PLAYGROUND ]

Indonesian Coder || Codenesia || Exploit Database || Exploit ID || HN Community || devilzc0de || Packet Storm || cxsecurity