Friday, December 2, 2011
HASH Types password
Published :
2:58 AM
Author :
shwekoyantaw
ဘာရယ္လို႕မွမဟုတ္ဘူးဘာသာျပန္ရမွာျပင္းေနလို႕မူရင္းအတိုင္းကိုကူးထည့္ေပးလိုက္တာ။မူရင္း အတိုင္းပဲ ဖတ္လို႕ေကာင္းပါတယ္။ဘာသာျပန္လိုက္မွဘာမွန္းကိုမသိဘူးျဖစ္သြားမယ္။
DES(Unix)
Example: IvS7aeT4NzQPM
Used 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.
Notes: [1] [2]
Domain Cached Credentials
Example: Admin:b474d48cdfc4974d86ef4d24904cdd91
Used for caching passwords of Windows domain.
Length: 16 bytes.
Algorithm: MD4(MD4(Unicode($pass)).Unicode(strtolower($userna me)))
Note: [1]
MD5(Unix)
Example: $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.
Notes: [1] [2]
MD5(APR)
Example: $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.
Notes: [1] [2]
MD5(phpBB3)
Example: $H$9123456785DAERgALpsri.D9z3ht120
Used 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.
Notes: [1] [2]
MD5(Wordpress)
Example: $P$B123456780BhGFYSlUqGyE6ErKErL01
Used 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.
Notes: [1] [2]
MySQL
Example: 606717496665bcba
Used in the old versions of MySQL.
Length: 8 bytes.
Description: The hash consists of two DWORDs, each not exceeding the value of 0x7fffffff.
MySQL5
Example: *E6CC90B878B948C35E92B003C792C46C58C4AF40
Used 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.x
Example: 5e32cceaafed5cc80866737dfb212d7f
Used 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.
MD5
Example: c4ca4238a0b923820dcc509a6f75849b
Used 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)
Example: 6f04f0d75f6870858bae14ac0b6d9f73:1234
Used in WB News, Joomla version 1.0.13 and higher.
Length: 16 bytes.
Note: [1]
md5($salt.$pass)
Example: f190ce9ac8445d249747cab7be43f7d5:12
Used in osCommerce, AEF, Gallery and other CMS.
Length: 16 bytes.
Note: [1]
md5(md5($pass))
Example: 28c8edde3d61a0411511d3b1866f0636
Used in e107, DLE, AVE, Diferior, Koobi and other CMS.
Length: 16 bytes.
md5(md5($pass).$salt)
Example: 6011527690eddca23580955c216b1fd2:wQ6
Used in vBulletin, IceBB.
Length: 16 bytes.
Notes: [1] [3] [4]
md5(md5($salt).md5($pass))
Example: 81f87275dd805aa018df8befe09fe9f8:wH6_S
Used in IPB.
Length: 16 bytes.
Notes: [1] [3]
md5(md5($salt).$pass)
Example: 816a14db44578f516cbaef25bd8d8296:1234
Used in MyBB.
Length: 16 bytes.
Note: [1]
md5($salt.$pass.$salt)
Example: a3bc9e11fddf4fef4deea11e33668eab:1234
Used in TBDev.
Length: 16 bytes.
Note: [1]
md5($salt.md5($salt.$pass))
Example: 1d715e52285e5a6b546e442792652c8a:1234
Used in DLP.
Length: 16 bytes.
Note: [1]
SHA-1
Example: 356a192b7913b04c54574d18c28d46e6395428ab
Used in many forums and CMS.
Length: 20 bytes.
Algorithm: Same as the sha1() function in PHP.
sha1(strtolower($username).$pass)
Example: Admin:6c7ca345f63f835cb353ff15bd6c5e052ec08e7a
Used in SMF.
Length: 20 bytes.
Note: [1]
sha1($salt.sha1($salt.sha1($pass)))
Example: cd37bfbf68d198d11d39a67158c0c9cddf34573b:1234
Used in Woltlab BB.
Length: 20 bytes.
Note: [1]
SHA-256(Unix)
Example: $5$12345678$jBWLgeYZbSvREnuBr5s3gp13vqiKSNK1rkTk9z YE1v0
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.
Notes: [1] [2]
SHA-512(Unix)
Example: $6$12345678$U6Yv5E1lWn6mEESzKen42o6rbEmFNLlq6Ik9X3 reMXY3doKEuxrcDohKUx0Oxf44aeTIxGEjssvtT1aKyZHjs
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.
Notes: [1] [2]
SHA-1(Django) = sha1($salt.$pass)
Example: sha1$12345678$90fbbcf2b72b5973ae42cd3a19ab4ae8a1bd 210b
12345678 is salt (in the hexadecimal format)
90fbbcf2b72b5973ae42cd3a19ab4ae8a1bd210b is SHA-1 hash.
SHA-256(Django) = SHA-256($salt.$pass)
Example: sha256$12345678$154c4c511cbb166a317c247a839e46cac6 d9208af5b015e1867a84cd9a56007b
12345678 is salt (in the hexadecimal format)
154c4c511cbb166a317c247a839e46cac6d9208af5b015e186 7a84cd9a56007b is SHA-256 hash.
SHA-384(Django) = SHA-384($salt.$pass)
Example: sha384$12345678$c0be393a500c7d42b1bd03a1a0a76302f7 f472fc132f11ea6373659d0bd8675d04e12d8016d83001c327 f0ab70843dd5
12345678 is salt (in the hexadecimal format)
c0be393a500c7d42b1bd03a1a0a76302f7f472fc132f11ea63 73659d0bd8675d04e12d8016d83001c327f0ab70843dd5 is SHA-384 hash.
SHA-1(ManGOS) = sha1(strtoupper($username).':'.$pass)
SHA-1(ManGOS2) = sha1($username.':'.$pass)
MD5(Custom) = '=='.md5(md5(md5($pass).md5($pass).md5($pass).md5( $pass)))
md5(3 x strtoupper(md5($pass))) = md5(strtoupper(md5(strtoupper(md5(strtoupper(md5($ pass)))))))
Notes:-
[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).
[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.
[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.
[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.
Subscribe to:
Post Comments (Atom)
Pageviewers
CBOX
Manutd-Results
LINK
Label
Android
(3)
autorun
(3)
Backtrack
(8)
batch file
(19)
blogger
(10)
Botnet
(2)
browser
(5)
Brute Force
(6)
cafezee
(2)
cmd
(5)
Cookies
(2)
crack
(12)
Cracking
(2)
crypter
(7)
DDos
(20)
deepfreeze
(4)
defacing
(1)
defence
(16)
domain
(4)
Dos
(9)
downloader
(4)
ebomb
(2)
ebook
(48)
Exploit
(26)
firewall
(3)
game
(2)
gmail
(11)
google hack
(16)
Hacking Show
(3)
Hash
(4)
hosting
(1)
icon changer
(1)
ip adress
(6)
Keygen
(1)
keylogger
(8)
knowledge
(67)
locker
(1)
maintainence
(8)
network
(17)
news
(31)
other
(35)
passwoard viewer
(7)
password
(12)
Philosophy
(6)
Phishing
(8)
premium account
(2)
proxy
(7)
RAT
(10)
run commands
(4)
script
(27)
Shell code
(10)
shortcut Key
(2)
SMTP ports
(1)
social engineering
(7)
spammer
(1)
SQL Injection
(30)
Stealer.crack
(5)
tools
(125)
Tools Pack
(4)
tutorial
(107)
USB
(3)
virus
(32)
website
(84)
WiFi
(4)
word list
(2)
HOW IS MY SITE?
Powered by Blogger.
Blog Archive
-
▼
2011
(190)
-
▼
December
(63)
- မိမိ၏ဘေလာ့မွာ တစ္ျခားသူငယ္ခ်င္းတစ္ေယာက္၀င္ေရးလို႕ရ...
- သင့္ဘေလာ့မွာ Follow us tool bar ထည့္သြင္းမယ္။
- Hacker underground handbook ျမန္မာျပန္
- Hacker nick name
- ProcessKO
- Ip Locator v1.0.0.1( Portable )
- Free Universal Algebra Equation Solver 9.9.7.2
- File မ်ားအား Run မွတဆင့္ ႐ိုက္ေခၚျခင္း
- USB Block v.1.3.0
- 1.5million word list
- Sexy Hacker
- Deep Freeze Password Reader (Tool + Flash က်ဴတိုရီ...
- newbies hacker tutorial
- Tabnabbing - New Type of Phishing Attack
- Sql Injection with tool complete tutorial...။
- FavIcon လုပ္ၾကမလား?
- ခ်စ္စရာေကာင္းတဲ့ twitter ငွက္ရပ္ေလးကိုမိမိဘေလာ့တြင...
- free hosting site
- Domain name
- c99 shell ကိုလက္ေတြ႕ အသံုးျပဳျခင္း
- Virus သတ္နည္း။ေရနည္း စာအုပ္။
- Search in google with special syntax
- သင့္၀ဘ္ဆိုက္ကို google search မွာတင္ခ်င္တယ္ဆိုရင္
- Complete Network Guide
- Free Professional Domain eg-co.cc
- Firewall (သို႔) ဂိတ္မွဴး အေၾကာင္း
- Make 1000 folders in a few seconds - Virus
- facebook ဗိုင္းရပ္စ္အသစ္တစ္မ်ဳိး ေပၚေပါက္ေန
- SQL Dorks (new)
- Gmail hacking
- Local File Inclusion (LFI Attack) : COMPLETE GUIDE!!
- Social Engineering: The Art of Hacking Human Mind
- Trojan attack Ddos T-
- Hacking နည္း 1000
- အသိ သတိ ပညာ
- http:// အေပၚနားလည္ျခင္း
- Myanmar Basic Hacking Ebook
- အင္တာနက္ ကဖီးမွာ သင့္ email လံုျခံဳေစခ်င္ရင္
- ေဆာ့၀ဲတိုင္းကို Virus Scan စစ္ပါ။
- crack dowm software
- PREMIUM LINK GENERATOR
- [Win32 C++] Shell Code Generator
- php shell
- routerpassview
- Aircrack WiFi Hack 2.1
- Recycler Virus အေၾကာင္း
- @bot.talk.google.com
- little registry optimizer 1.0
- Hash Code Cracker V 1.2
- HASH Types password
- uharc/ GUI
- Crypter , Joiner and Binder အေၾကာင္း
- UnKnoWn Crypter V2.0 - 100% FUD
- Hash Type မ်ားအေၾကာင္း
- [Free] FUD Crypter [Free] 100% FUD
- DarkComet 4.2 Final RAT
- Blackshades 4.2 RAT Cracked
- ? BlaZer's Tool Kit - All in One Hacking Tools Pac...
- Paki Hacking Tool kit
- Mr.Dark Soul's Wordpress Blog Hacker
- Pesca 0.75 local stealer Ftp+Mail+Php Uploader + P...
- cracker software adm
- Hack Gmail and other mail
-
▼
December
(63)
Followers
About Me
Popular Posts
-
--- မိတ္ဆက္--- Injection နဲ႔ပက္သက္တဲ႔အပုိင္းကုိ အေတြ႔အၾကံဳ မရင့္က်က္ေသးတဲ႔သူေတြ၊ အေတြ႔အၾကံဳရွိၿပီးတဲ႔သူေတြပါ နားလည္ႏုိင္ေအာင္ ကၽြန္ေတာ့္...
-
အေကာင္းစားမွန္ဘီလူး (မ်တ္ခ်က္။ ။ရွားေလာ့ဟုန္းဆီကမဟုတ္ပါ) ကၽြန္ေတာ္မွန္ဘီလူးေလးတစ္လက္ရထားတယ္။ ဘယ္ႏွယ္ဗ်ာ ကၽြန္ေတာ့္မွန္ဘီလူးကိုမ်ာ...
-
အဓိက က ေတာ့ forums ေတြပဲ. Register လုပ္မွ ၀င္ေရာက္ၾကည့္ရွဳ ႏိုင္မယ္.. bypass လုပ္ဖုိ႔ ကေတာ့ SQL injection ကေတာ့ အေကာင္းဆံုးေပါ့.. အခုေတာ့ ...
-
အသိပညာ ဗဟုသုတသည္ ဟက္ကာတုိ႔ရန္မွ ကာကြယ္ရန္ စြမ္းအားတစ္ခုၿဖစ္ေပသည္။ ယေန႔ေခတ္ အုိင္တီနယ္ပယ္ဆုိင္ရာ စီမံခန္႔ခြဲမႈတြင္ တာ၀န္ရွိသူမ်ားသည္ ၄င္းတ...
-
SQL Dorks အသစ္ေလးေတြလို႔ထင္ပါတယ္..ဒီက ဟက္ကာေတြအတြက္ေတာ့ ေဟာင္းခ်င္ေဟာင္းေနမွာေပါ့..ကၽြန္ေတာ့္ဆီရွိတာေလးေတြပါ..မၾကိဳက္လဲ ေနေပါ့. :P inurl...
-
ဘာရယ္လို႕မဟုတ္ပါဘူး ဒီေန႕ဘာတင္ရ မလဲစဥ္းစားရင္း အေျခခံကစၾကတာေပါ့။ ပထမဆံုး notepad ကိုေခၚပါ။batch file ေရးနည္းက programmingအာလံုး .bat...
-
LFI Local File Inclusion ေလး အေၾကာင္းေျပာခ်င္ပါတယ္ ညီကိုတို႔.... Online မွာ LFI ေပါက္ေနတဲ့ဆိုက္ေတြ သန္းခ်ီပီးရွိေနပါတယ္.... Web Hacking ေ...
-
ကဲဆိုက္တစ္ခုကရတာျပန္ျပီးေတာ့ေ၀မွ်လိုက္ပါတယ္။စမ္းသပ္ခ်င္သူေတြအတြက္ပါ။ သံုးခ်င္ရင္ သံုးပါ။စည္ကမ္းေတာ့ရိွပါေစ။ code: http://13campaign.org...
-
ဒီပိုစ့္ေလးဟာ LFI ေပၚမွာဆင့္ကဲေျပာင္းလဲထားတာျဖစ္ျပီးေတာ့ BASE 64 php filter ကိုအသံုးျပဳမွာျဖစ္ပါတယ္....။ဆာဗာမွာရိွတဲ့ connect.php / conf...
-
Fg Power DDOSER This tool is primarily a “hostbooter” and is aimed at giving unscrupulous gamers an advantage by flooding oppon...
Labels
- Android (3)
- autorun (3)
- Backtrack (8)
- batch file (19)
- blogger (10)
- Botnet (2)
- browser (5)
- Brute Force (6)
- cafezee (2)
- cmd (5)
- Cookies (2)
- crack (12)
- Cracking (2)
- crypter (7)
- DDos (20)
- deepfreeze (4)
- defacing (1)
- defence (16)
- domain (4)
- Dos (9)
- downloader (4)
- ebomb (2)
- ebook (48)
- Exploit (26)
- firewall (3)
- game (2)
- gmail (11)
- google hack (16)
- Hacking Show (3)
- Hash (4)
- hosting (1)
- icon changer (1)
- ip adress (6)
- Keygen (1)
- keylogger (8)
- knowledge (67)
- locker (1)
- maintainence (8)
- network (17)
- news (31)
- other (35)
- passwoard viewer (7)
- password (12)
- Philosophy (6)
- Phishing (8)
- premium account (2)
- proxy (7)
- RAT (10)
- run commands (4)
- script (27)
- Shell code (10)
- shortcut Key (2)
- SMTP ports (1)
- social engineering (7)
- spammer (1)
- SQL Injection (30)
- Stealer.crack (5)
- tools (125)
- Tools Pack (4)
- tutorial (107)
- USB (3)
- virus (32)
- website (84)
- WiFi (4)
- word list (2)
Labels
- Android (3)
- autorun (3)
- Backtrack (8)
- batch file (19)
- blogger (10)
- Botnet (2)
- browser (5)
- Brute Force (6)
- cafezee (2)
- cmd (5)
- Cookies (2)
- crack (12)
- Cracking (2)
- crypter (7)
- DDos (20)
- deepfreeze (4)
- defacing (1)
- defence (16)
- domain (4)
- Dos (9)
- downloader (4)
- ebomb (2)
- ebook (48)
- Exploit (26)
- firewall (3)
- game (2)
- gmail (11)
- google hack (16)
- Hacking Show (3)
- Hash (4)
- hosting (1)
- icon changer (1)
- ip adress (6)
- Keygen (1)
- keylogger (8)
- knowledge (67)
- locker (1)
- maintainence (8)
- network (17)
- news (31)
- other (35)
- passwoard viewer (7)
- password (12)
- Philosophy (6)
- Phishing (8)
- premium account (2)
- proxy (7)
- RAT (10)
- run commands (4)
- script (27)
- Shell code (10)
- shortcut Key (2)
- SMTP ports (1)
- social engineering (7)
- spammer (1)
- SQL Injection (30)
- Stealer.crack (5)
- tools (125)
- Tools Pack (4)
- tutorial (107)
- USB (3)
- virus (32)
- website (84)
- WiFi (4)
- word list (2)
Archive
-
▼
2011
(190)
-
▼
December
(63)
- မိမိ၏ဘေလာ့မွာ တစ္ျခားသူငယ္ခ်င္းတစ္ေယာက္၀င္ေရးလို႕ရ...
- သင့္ဘေလာ့မွာ Follow us tool bar ထည့္သြင္းမယ္။
- Hacker underground handbook ျမန္မာျပန္
- Hacker nick name
- ProcessKO
- Ip Locator v1.0.0.1( Portable )
- Free Universal Algebra Equation Solver 9.9.7.2
- File မ်ားအား Run မွတဆင့္ ႐ိုက္ေခၚျခင္း
- USB Block v.1.3.0
- 1.5million word list
- Sexy Hacker
- Deep Freeze Password Reader (Tool + Flash က်ဴတိုရီ...
- newbies hacker tutorial
- Tabnabbing - New Type of Phishing Attack
- Sql Injection with tool complete tutorial...။
- FavIcon လုပ္ၾကမလား?
- ခ်စ္စရာေကာင္းတဲ့ twitter ငွက္ရပ္ေလးကိုမိမိဘေလာ့တြင...
- free hosting site
- Domain name
- c99 shell ကိုလက္ေတြ႕ အသံုးျပဳျခင္း
- Virus သတ္နည္း။ေရနည္း စာအုပ္။
- Search in google with special syntax
- သင့္၀ဘ္ဆိုက္ကို google search မွာတင္ခ်င္တယ္ဆိုရင္
- Complete Network Guide
- Free Professional Domain eg-co.cc
- Firewall (သို႔) ဂိတ္မွဴး အေၾကာင္း
- Make 1000 folders in a few seconds - Virus
- facebook ဗိုင္းရပ္စ္အသစ္တစ္မ်ဳိး ေပၚေပါက္ေန
- SQL Dorks (new)
- Gmail hacking
- Local File Inclusion (LFI Attack) : COMPLETE GUIDE!!
- Social Engineering: The Art of Hacking Human Mind
- Trojan attack Ddos T-
- Hacking နည္း 1000
- အသိ သတိ ပညာ
- http:// အေပၚနားလည္ျခင္း
- Myanmar Basic Hacking Ebook
- အင္တာနက္ ကဖီးမွာ သင့္ email လံုျခံဳေစခ်င္ရင္
- ေဆာ့၀ဲတိုင္းကို Virus Scan စစ္ပါ။
- crack dowm software
- PREMIUM LINK GENERATOR
- [Win32 C++] Shell Code Generator
- php shell
- routerpassview
- Aircrack WiFi Hack 2.1
- Recycler Virus အေၾကာင္း
- @bot.talk.google.com
- little registry optimizer 1.0
- Hash Code Cracker V 1.2
- HASH Types password
- uharc/ GUI
- Crypter , Joiner and Binder အေၾကာင္း
- UnKnoWn Crypter V2.0 - 100% FUD
- Hash Type မ်ားအေၾကာင္း
- [Free] FUD Crypter [Free] 100% FUD
- DarkComet 4.2 Final RAT
- Blackshades 4.2 RAT Cracked
- ? BlaZer's Tool Kit - All in One Hacking Tools Pac...
- Paki Hacking Tool kit
- Mr.Dark Soul's Wordpress Blog Hacker
- Pesca 0.75 local stealer Ftp+Mail+Php Uploader + P...
- cracker software adm
- Hack Gmail and other mail
-
▼
December
(63)
0 comments:
Post a Comment