Malaysian WackWall Forum
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Malaysian WackWall Forum

Now Malaysian Can Connect Over The World
 
HomePortalGalleryLatest imagesSearchRegisterLog in
Navigation
:: Portal ::
:: Forum ::
 :: Memberlist ::
:: Profile ::
:: FAQ ::
:: Search ::


AlertPay Easy Money Transfer 100% Free to register
 
Log in
Username:
Password:
Log in automatically: 
:: I forgot my password
Google Translator
Latest topics
» IRC Flooder Script For Sale
Mengenali Jenis - Jenis HASH EmptyMon Oct 08, 2012 12:39 am by maxi.y.mateo

» utusan.com.my Being DDOS
Mengenali Jenis - Jenis HASH EmptyFri Jan 20, 2012 5:33 pm by Penjejak Badai

» PHP IRC Bot
Mengenali Jenis - Jenis HASH EmptyFri Dec 02, 2011 11:31 am by siperda

» SQL Injection Scanner By XShimeX
Mengenali Jenis - Jenis HASH EmptyMon Oct 24, 2011 6:22 pm by sucide_bomber

» Website Vulnerable Scanner Tools V1.01 By proqrammer
Mengenali Jenis - Jenis HASH EmptyMon Oct 24, 2011 6:21 pm by sucide_bomber

» Slowloris or XerXes Leak Version
Mengenali Jenis - Jenis HASH EmptyTue Sep 13, 2011 7:45 pm by sucide_bomber

» maisarah wuz here
Mengenali Jenis - Jenis HASH EmptyTue Sep 13, 2011 7:32 pm by sucide_bomber

» Sql Injection Tutorial
Mengenali Jenis - Jenis HASH EmptyTue Jul 19, 2011 2:56 pm by sucide_bomber

» XerXes Source Codes!!
Mengenali Jenis - Jenis HASH EmptyWed Jul 13, 2011 8:55 am by wackwall

» SQL Injection dalam bahasa Malaysia
Mengenali Jenis - Jenis HASH EmptyThu Jun 30, 2011 9:11 pm by sucide_bomber

» LFI Scanner ( Perl )
Mengenali Jenis - Jenis HASH EmptyMon Jun 27, 2011 8:21 am by wackwall

» Muhasabah diri tingkat kesyukuran, keinsafan umat
Mengenali Jenis - Jenis HASH EmptyMon Jun 27, 2011 3:56 am by sucide_bomber

» 5013 Webs With SQL Vuln
Mengenali Jenis - Jenis HASH EmptyMon Jun 27, 2011 3:50 am by sucide_bomber

» Saya mencari part time job online?
Mengenali Jenis - Jenis HASH EmptyMon Jun 27, 2011 1:19 am by sucide_bomber

» 16 exploits for hacking CC databases
Mengenali Jenis - Jenis HASH EmptyMon Jun 13, 2011 1:33 pm by sucide_bomber

Link Exchange
Online News


















Churp2x Campaign
Click Pada Iklan DiBawah & Dapatkan Ganjaran Anda
SEKARANG!



















Mangga Ads
NuffNang Ads

 

 Mengenali Jenis - Jenis HASH

Go down 
AuthorMessage
wackwall
Admin
wackwall


Zodiac : Cancer Chinese zodiac : Rooster
Posts : 159
Points : 5320
Reputation : 2
Join date : 10/12/2010
Age : 42
Location Location : Sarawak

Mengenali Jenis - Jenis HASH Empty
PostSubject: Mengenali Jenis - Jenis HASH   Mengenali Jenis - Jenis HASH EmptyMon Dec 27, 2010 8:58 am

Hash Types


Below you can find additional information on different hash types along with their brief descriptions and hash examples.



Hash TypeHash ExampleAdditional Information
DES(Unix)IvS7aeT4NzQPMUsed in Linux and other similar OS.

Length: 13 characters.

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.

Domain Cached CredentialsAdmin:b474d48cdfc4974d86ef4d24904cdd91Used for caching passwords of Windows domain.

Length: 16 bytes.

Algorithm: MD4(MD4(Unicode($pass)).Unicode(strtolower($username)))

MD5(Unix)$1$12345678$XM4P3PrKBgKNnTaqG9P0T/Used in Linux and other similar OS.

Length: 34 characters.

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.

Algorithm: Actually that is a loop calling the MD5 algorithm 2000 times.

MD5(APR)$apr1$12345678$auQSX8Mvzt.tdBi4y6Xgj.Used in Linux and other similar OS.

Length: 37 characters.

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.

Algorithm: Actually that is a loop calling the MD5 algorithm 2000 times.

MD5(phpBB3)$H$9123456785DAERgALpsri.D9z3ht120Used in phpBB 3.x.x.

Length: 34 characters.

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.

Algorithm: Actually that is a loop calling the MD5 algorithm 2048 times.

MD5(Wordpress)$P$B123456780BhGFYSlUqGyE6ErKErL01Used in Wordpress.

Length: 34 characters.

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.

Algorithm: Actually that is a loop calling the MD5 algorithm 8192 times.

MySQL606717496665bcbaUsed in the old versions of MySQL.

Length: 8 bytes.

Description: The hash consists of two DWORDs, each not exceeding the value of 0x7fffffff.
MySQL5*E6CC90B878B948C35E92B003C792C46C58C4AF40Used in the new versions of MySQL.

Length: 20 bytes.

Algorithm: SHA-1(SHA-1($pass))

Note: The hashes are to be loaded to the program without the asterisk that stands in the beginning of each hash.
RAdmin v2.x5e32cceaafed5cc80866737dfb212d7fUsed in the application Remote Administrator v2.x.

Length: 16 bytes.

Algorithm: The password is padded with zeros to the length of 100
bytes, then that entire string is hashed with the MD5 algorithm.
MD5c4ca4238a0b923820dcc509a6f75849bUsed in phpBB v2.x, Joomla version below 1.0.13 and many other forums and CMS.

Length: 16 bytes.

Algorithm: Same as the md5() function in PHP.
md5($pass.$salt)6f04f0d75f6870858bae14ac0b6d9f73:1234Used in WB News, Joomla version 1.0.13 and higher.

Length: 16 bytes.

md5($salt.$pass)f190ce9ac8445d249747cab7be43f7d5:12Used in osCommerce, AEF, Gallery and other CMS.

Length: 16 bytes.

md5(md5($pass))28c8edde3d61a0411511d3b1866f0636Used in e107, DLE, AVE, Diferior, Koobi and other CMS.

Length: 16 bytes.
md5(md5($pass).$salt)6011527690eddca23580955c216b1fd2:wQ6Used in vBulletin, IceBB.

Length: 16 bytes.

Notes:
md5(md5($salt).md5($pass))81f87275dd805aa018df8befe09fe9f8:wH6_SUsed in IPB.

Length: 16 bytes.


md5(md5($salt).$pass)816a14db44578f516cbaef25bd8d8296:1234Used in MyBB.

Length: 16 bytes.

md5($salt.$pass.$salt)a3bc9e11fddf4fef4deea11e33668eab:1234Used in TBDev.

Length: 16 bytes.

md5($salt.md5($salt.$pass))1d715e52285e5a6b546e442792652c8a:1234Used in DLP.

Length: 16 bytes.

SHA-1356a192b7913b04c54574d18c28d46e6395428abUsed in many forums and CMS.

Length: 20 bytes.

Algorithm: Same as the sha1() function in PHP.
sha1(strtolower($username).$pass)Admin:6c7ca345f63f835cb353ff15bd6c5e052ec08e7aUsed in SMF.

Length: 20 bytes.

sha1($salt.sha1($salt.sha1($pass)))cd37bfbf68d198d11d39a67158c0c9cddf34573b:1234Used in Woltlab BB.

Length: 20 bytes.

SHA-256(Unix)$5$12345678$jBWLgeYZbSvREnuBr5s3gp13vqi...Used in Linux and other similar OS.

Length: 55 characters.

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.

Algorithm: Actually that is a loop calling the SHA-256 algorithm 5000 times.

SHA-512(Unix)$6$12345678$U6Yv5E1lWn6mEESzKen42o6rbEm...Used in Linux and other similar OS.

Length: 98 characters.

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.

Algorithm: Actually that is a loop calling the SHA-512 algorithm 5000 times.

Back to top Go down
https://malaysia.1talk.net
 
Mengenali Jenis - Jenis HASH
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
Malaysian WackWall Forum :: Forum Komputer :: Tutorial-
Jump to: