Error » Certification & Programming center Error !! » Programming Error ! » Can someone decode/decrypt this MD5 Hash?

Programming Error ! Programming error messages

Post New Thread Reply
  Can someone decode/decrypt this MD5 Hash?
LinkBack Thread Tools Display Modes
Old 19-Nov-2007, 11:18 PM   #1 (permalink)
Administrator
 
Anilrgowda's Avatar

Posts: 18,703
Join Date: Jan 2006
Rep Power: 10 Anilrgowda is on a distinguished road

IM:
Default Can someone decode/decrypt this MD5 Hash?

Question: I've tried using this MD5 encryter/decrypter: MD5 Decrypter.com, MD5 Decryption, Free MD5 Decryptor, Security, MD5 Hash, MD5 Security. to decipher certain MD5 hashes like 62f75a320a5b1a0c61879a57dac58352=test.klwn.com but I have not been able to crack this particular hash and it's keeping my CMS from seeing the correct domain in my tplconfig.php and my session.php files. Below is the "mystery" hash that keeps coming back "not found in the database"......
Mystery hash=6666cd76f96956469e7be39d750cc7d9


------------------


Anilrgowda is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
   


   
Old 19-Nov-2007, 11:18 PM   #2 (permalink)
Administrator
 
Anilrgowda's Avatar

Posts: 18,703
Join Date: Jan 2006
Rep Power: 10 Anilrgowda is on a distinguished road

IM:
Default Re: Can someone decode/decrypt this MD5 Hash?

Basically, there is nothing called hash decryptor, simply because there is an infinite number of data that can generate a certain hash. The hash function is not used to generate encrypted information, but rather, to generate integrity verification information. For example, if I choose a very simple hash function that performs XOR between bytes, then, for the following data bytes:

00000000 00000000 00000000 00000000 00000001 00000000 00000000

the hash will be 00000001.

Note that the following data bytes will also have the same hash:

00001111 10001111 10000000 00001000 00001000 00000000 00000001

And also note that given the hash byte 00000001 you can never know whether the original information was the first or the second one, or even something else. You can only use the hash to verify the information integrity *when* you already have the original information.

What the site md5decrypter.com does is that it has a huge database of different data and their corresponding hash values. When you provide a hash, the database is searched for an entry containing the hash you provided, and if a match is found, the corresponding data is returned.

You must also know that you can never guarantee that the information returned by the web site is the information you are looking for. For example, if I tell you the hash of my web site name is 62f75a320a5b1a0c61879a57dac58352, then this does not imply that my web site is test.klwn.com, simply because there is an infinite number of site names that will have the same hash.


------------------


Anilrgowda is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Post New Thread Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT -8. The time now is 01:25 AM.

Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0

DMCA Policy

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228