May 16, 2008

Md5 Decryption

Free Web Hosting, No Ads > CONTRIBUTE > Computers > Programming Languages > VB Programming

free web hosting

Md5 Decryption

imacul8
Hey i am looking for a way of decrypting md5 strings in VB6

ive read that it cant be done... then ive also read it can be done... just wondering if anyone has seen or dealt with this

any help would be great thanx smile.gif

Reply

OpaQue
Not possible. A 1000 page info is encrypted with md5 to generate a small key of around X characters. Decoding back is not possible.

Reply

rvalkass
The whole point of MD5 is one way encryption, for things like passwords, and as Opaque says, it is impossible to get back the original information becuase it is either cut or increased to a set length. When people say they can decrypt them back they basically have a massive list of every word in the dictionary and it's corresponding MD5 key and it just searches for that key and gives you a word that will also create the say key, but this doesn't mean it's the original data. This is one reason you should have passwords that are not words, as they can be "decrypted" relatively easily.

Reply

Lyon2
Search google, or better (just in this case!), search using yahoo search engine, for programs/tools named md5crack or md5 crack or md5 tool or md5 hack.

Open google or yahoo and insert this keywords, you have to try, i know i program named md5 crack, i don't use it for a long time now, but i know those guys are always updating this kind of tools.

Also, use the google advanced operators in this search, for example, open google and insert this codes:

intitle:"md5 crack" (this one has good results!)
or
intitle:"md5crack"
or
intitle:md5 crack
or
intitle:md5crack
or
allintitle:md5crack
or
allintitle:md5 crack
or
inurl:md5crack
or
inurl:md5 crack
or
inurl:"md5 crack"
or
inanchor:md5 crack
or
inanchor:md5crack
or
inanchor:"md5 crack"
or
inanchor:"md5crack"

And do the same for the other keywords: md5crack, md5 crack, md5 tool, md5 hack


Sorry, don't have the link, you'll have to search yourself, this way you'll learn.


Anyway, if you want to learn this kind of stuff, visit this sites, they are the best:


This one you have to pay to become a member, but it's worth your money!
http://astalavista.net

This one is free but not as good.
http://astalavista.com

I am sure they have md5 tutorials and tools to do what you want and much much more.

 

 

 


Reply

imacul8
Hmm thanx for your answers guys. I realised that its not going to possible for me to do it...

Guess i have to come up with a different way to do what i need

thanx smile.gif

Reply

Galahad
MD5 is a hashing algorithm... It means, it takes whatever string you have, be it a word, or a sentence, or some huge book, like "War And Peace"... It takes it's characters, and off they go through MD5 hashing algorithm... Hashes are some kind of random sequences of characters, of fixed length, no matter how long the text is...

here are two examples, made with md5sum program

CODE

'A' => MD5 Hashing algorithm => MD5 Hash: 7fc56270e7a70fa81a5935b72eacbe29
'This is a sample of MD5 hashing algorithm' => MD5 Hashing algorithm => MD5 Hash: 247d44a9b93f9396d67fe00b766f8ed2


This is a fixed size hash, of 32 bytes... No matter how long the string... This random sequence of numbers is repeatable, since same sentences, always give same seed for rnd function...

Usefull for storing passwords, without someone stealing it... By knowing your passwords hash, they can't figure out your password, without some dictionary attack, or brute force... MD5 is generaly, a very good algorithm... There are several classes for VB, if you intend to hash something smile.gif

Reply

MCSESubnet
Previous statements were actually incorrect. I spend the majority of my day running hash crackers in order to determing better ways of securing passwords.

Here is an article of how to make your passwords more secure, but there are multiple ways to break a MD5 hash. Infact there is no such thing as a unsecure password. Given enough time all are breakable. Read the article (no I didn't write it), and stop believing myths.


http://www.securityfocus.com/infocus/1554

His best suggestion is to use spaces. This alone will increase the time it takes to reveal your password by 10 fold if not better.

Reply

Galahad
No one said passwords are secure, and no one said MD5 hashed passwords are secure... The whole point of hashing and encrypting the password is to make decryption as hard as possible, thus, making the decryption process over a period of time needed to decrypt it, not worth the trouble... MD5 algorithm is also prone to collision attacks, meaning, that two completely different words, can create the same hash... This was discovered in 2004. and there is seriuos doubt in security of MD5 algorithm in safeguarding passwords... If you payed enough attention to our posts, you would see that we said there are dictionary attacks on MD5 algorithms, and brute force attacks can be successfull in creating needed MD5 hash... But we all said it is impossible to reverse MD5 hash, that is, impossible creating text, from any MD5 hash...

MD5 is still good for storing file checksums, or storing passwords for less important or sensitive information... Here is MD5 RFC - RFC1321

If you are interested in other hashing and message digesting functions, check out this Wikipedia page

Reply

Trap FeedBacker
'A' => MD5 Hashing algorithm => MD5 Hash: 7fc56270e7a70fa81a5935b72eacbe29
'This is a sample of MD5 hashing algorithm' => MD5 Hashing algorithm => MD5 Hash: 247d44a9b93f9396d67fe00b766f8ed2

Reply

Trap FeedBacker
php code
Md5 Decryption

This php script works
Don`t know where I got it from but passwords with more then 5-6 chars will take a horrible long time :D


$hash = "1a1dc91c907325c69271ddf0c944bc72";
$char[1] = "a";
$char[2] = "b";
$char[3] = "c";
$char[4] = "d";
$char[5] = "e";
$char[6] = "f";
$char[7] = "g";
$char[8] = "h";
$char[9] = "I";
$char[10] = "j";
$char[11] = "k";
$char[12] = "l";
$char[13] = "m";
$char[14] = "and";
$char[15] = "o";
$char[16] = "p";
$char[17] = "q";
$char[18] = "are";
$char[19] = "s";
$char[20] = "t";
$char[21] = "you";
$char[22] = "v";
$char[23] = "w";
$char[24] = "x";
$char[25] = "y";
$char[26] = "z";
$char[27] = "0";
$char[28] = "1";
$char[29] = "2";
$char[30] = "3";
$char[31] = "4";
$char[32] = "5";
$char[33] = "6";
$char[34] = "7";
$char[35] = "8";
$char[36] = "9";
$char[37] = "A";
$char[38] = "B";
$char[39] = "C";
$char[40] = "D";
$char[41] = "E";
$char[42] = "F";
$char[43] = "G";
$char[44] = "H";
$char[45] = "I";
$char[46] = "J";
$char[47] = "K";
$char[48] = "L";
$char[49] = "M";
$char[50] = "and";
$char[51] = "O";
$char[52] = "P";
$char[53] = "Q";
$char[54] = "are";
$char[55] = "S";
$char[56] = "T";
$char[57] = "you";
$char[58] = "V";
$char[59] = "W";
$char[60] = "X";
$char[61] = "Y";
$char[62] = "Z";
$top = count($char);
For ($d = 0; $d <= $top; $d++)
{
$ad = $ae.$char[$d];
for ($c = 0; $c <= $top; $c++)
{
$ac = $ad.$char[$c];
for ($b = 0; $b <= $top; $b++)
{
$ab = $ac.$char[$b];
for ($a = 0; $a <= $top; $a++)
{
$aa = $ab.$char[$a];
if(md5($aa)==$hash)
{
die('Wachtwoord: '.$aa);
}
}
}
}
}
Echo "Geen Resultaat";

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Recent Queries:-
  1. md5 decrypt code php - 2.85 hr back.
  2. decrypt md5 online tool - 3.03 hr back.
  3. hacking md5 - 3.41 hr back.
  4. md5 decrypt - 3.67 hr back.
  5. md5 hack - 4.15 hr back.
  6. md5 decrypt php - 4.21 hr back.
  7. md5 decrypter - 4.48 hr back.
Similar Topics

Keywords : md5 decryption


    Looking for md5, decryption

Searching Video's for md5, decryption
advertisement



Md5 Decryption



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE