Waraxe IT Security Portal  
  Login or Register
::  Home  ::  Search  ::  Your Account  ::  Forums  ::   Waraxe Advisories  ::  Tools  ::
April 20, 2024
Menu
 Home
 Logout
 Discussions
 Forums
 Members List
 IRC chat
 Tools
 Base64 coder
 MD5 hash
 CRC32 checksum
 ROT13 coder
 SHA-1 hash
 URL-decoder
 Sql Char Encoder
 Affiliates
 y3dips ITsec
 Md5 Cracker
 User Manuals
 AlbumNow
 Content
 Content
 Sections
 FAQ
 Top
 Info
 Feedback
 Recommend Us
 Search
 Journal
 Your Account



User Info
Welcome, Anonymous
Nickname
Password
(Register)

Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9145

People Online:
Visitors: 613
Members: 0
Total: 613
PacketStorm News
·301 Moved Permanently

read more...
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> All other hashes -> MD5 Help?
Post new topic  Reply to topic View previous topic :: View next topic 
MD5 Help?
PostPosted: Thu Jul 20, 2006 3:13 am Reply with quote
gbar
Regular user
Regular user
 
Joined: Jan 20, 2006
Posts: 9




Hi folks,
I have no idea how to convert salted MD5's back to normal MD5's so I can decode them.
If anyone can convert them back to normal MD5's it would be appreciated.

Password: ae9f01362090ebe44fc534334dae7232 Salt: EYN
Password: 0c8b210f22535ae0810b045b7aa84232 Salt: IN5
Password: a30d454143b2268d4b51c9b4a2709656 Salt: } *
Password: 0a77b5645d0dd72eb204a9d11ac5f00c Salt: (*2
Password: d053106c09fa241b6fe365fd66d7b91a Salt: Mm.
Password: 83531790d2253ba8f33bae7dd4d63777 Salt: A*D
Password: e197ad5ee0c66da4f8dd7aa159b6f191 Salt: J1+
Password: acea1f8d65e90d753df8e54c24e68f35 Salt: *H

Your help is kindly appreciated.
View user's profile Send private message
Re: MD5 Help?
PostPosted: Thu Jul 20, 2006 10:47 am Reply with quote
ToXiC
Moderator
Moderator
 
Joined: Dec 01, 2004
Posts: 181
Location: Cyprus




gbar wrote:
Hi folks,
I have no idea how to convert salted MD5's back to normal MD5's so I can decode them.
If anyone can convert them back to normal MD5's it would be appreciated.

Password: ae9f01362090ebe44fc534334dae7232 Salt: EYN
Password: 0c8b210f22535ae0810b045b7aa84232 Salt: IN5
Password: a30d454143b2268d4b51c9b4a2709656 Salt: } *
Password: 0a77b5645d0dd72eb204a9d11ac5f00c Salt: (*2
Password: d053106c09fa241b6fe365fd66d7b91a Salt: Mm.
Password: 83531790d2253ba8f33bae7dd4d63777 Salt: A*D
Password: e197ad5ee0c66da4f8dd7aa159b6f191 Salt: J1+
Password: acea1f8d65e90d753df8e54c24e68f35 Salt: *H

Your help is kindly appreciated.


If you dont know what a salted hash is, well, it's much simpler than it sounds. You have a common string that you append to each password before you hash it.

For example, if the password you want to encrypt is "toxic", and your salt string is "foo", then you simply create a hash of "toxicfoo". Keep in mind that you must use the same salt string across your application, so you are able to validate the hash later. When you need to validate the hash, for example when a user logs in, simply add "foo" to the end of whatever he/she submits.


$password = "toxic";
$salt = "foo";
$hash = md5($password.$salt);

If is that the methodology used for the above hashes then all you have to do is to add the salted value at the end of every word in your wordlist .. pray and hope that the word is in your list.. but base on that methodology .. its very simple to change and modify it as you want ... for example ..

$password = "toxic";
$salt = "foo";
$hash = md5(md5($salt).md5($password));

so .. you dont only need the salted value .. you also need the method ..

..now.. taking the first value ae9f01362090ebe44fc534334dae7232 with Salt: EYN ... you will have to make a wordlist .. like

aEYN
bEYN
cEYN
.... .... .. ..
and so on ...

and try to brute force it ..

but as i mentioned on a different post .. salted md5 hashes .. are not always as secure as they look .. because of the collitions .. so .. arithmeticaly you may come up with a different plain text that leeds to the same salted hash ..

md5 hash method was developed mostly to avoid colllitions .. now with salted hashes .. Its like entering a vicious circle ...



ToXiC

_________________
who|grep -i blonde|talk; cd~;wine;talk;touch;unzip;touch; strip;gasp;finger;gasp;mount; fsck; more; yes; gasp; umount; make clean; sleep;wakeup;goto http://www.md5this.com
View user's profile Send private message Visit poster's website MSN Messenger
PostPosted: Sun Jul 23, 2006 7:19 am Reply with quote
gbar
Regular user
Regular user
 
Joined: Jan 20, 2006
Posts: 9




I still do NOT understand, is it possible for you people to try convert this for me? Any of them (all would be great Wink )
I wont request any others.

Hope to hear from you soon thankyou
View user's profile Send private message
PostPosted: Thu Jul 27, 2006 12:58 pm Reply with quote
716
Regular user
Regular user
 
Joined: Feb 11, 2006
Posts: 19




vbulletin uses the following method:

$hash = md5(md5($pass).$salt);

i would also like to ask for some help... i have a full DB backed up on my HDD and i would like to crack few passes... is there a brute-force tool where you can chose the algorythm to calculate hashes?

thanks a lot in advance Exclamation
View user's profile Send private message
PostPosted: Thu Jul 27, 2006 1:07 pm Reply with quote
waraxe
Site admin
Site admin
 
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




716 wrote:
vbulletin uses the following method:

$hash = md5(md5($pass).$salt);

i would also like to ask for some help... i have a full DB backed up on my HDD and i would like to crack few passes... is there a brute-force tool where you can chose the algorythm to calculate hashes?

thanks a lot in advance Exclamation


There is one tool, able to various salted hashes cracking:

http://www.insidepro.com/eng/passwordspro.shtml


Code:

Hashes passwords recovery
The tool is designated to recover passwords for the following types of hashes:

MySQL
MySQL5
MD4
MD4 (Base64)
MD5
MD5 (Base64)
MD5 (Unix)
MD5 (APR)
SHA-1
SHA-1 (Base64)
as well as for hashes used by different PHP-programs:
md5(md5($pass))
md5(md5($pass).$salt)
md5(md5($salt).md5($pass))


It costs $40 though Smile
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Thu Jul 27, 2006 8:00 pm Reply with quote
716
Regular user
Regular user
 
Joined: Feb 11, 2006
Posts: 19




like there werent any crakcs Razz

http://flz.anycracks.com/cache/901964ee45f3867e8ecdf59a2aaddc8d8dc.zip

problem is that i dont understand how to use it exactly... the documentation is very poor...
View user's profile Send private message
PostPosted: Tue Aug 01, 2006 9:11 pm Reply with quote
Vixje
Active user
Active user
 
Joined: Mar 25, 2006
Posts: 35




i was able to recover 3rd and 7th password using a wordlist. Both are: microsoft
View user's profile Send private message
PostPosted: Thu Aug 03, 2006 4:47 am Reply with quote
gbar
Regular user
Regular user
 
Joined: Jan 20, 2006
Posts: 9




they work thanks Smile

the most important one for me would be the first one if anyone can help!!

many thx
View user's profile Send private message
PostPosted: Sun Feb 14, 2010 12:11 pm Reply with quote
davitz38
Beginner
Beginner
 
Joined: Feb 14, 2010
Posts: 4




Hi Guys,
I know this is an old post, but was wondering if you were able to crack these keys? just wanted to know before trying it
I use this Online Md5 Converter
David
View user's profile Send private message
PostPosted: Sun Feb 14, 2010 12:39 pm Reply with quote
vince213333
Advanced user
Advanced user
 
Joined: Aug 03, 2009
Posts: 737
Location: Belgium




83531790d2253ba8f33bae7dd4d63777:A*D Password: buddy6
a30d454143b2268d4b51c9b4a2709656:} * Password: microsoft
e197ad5ee0c66da4f8dd7aa159b6f191:J1+ Password: microsoft
0a77b5645d0dd72eb204a9d11ac5f00c:(*2 Password: simpsons

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

Password: acea1f8d65e90d753df8e54c24e68f35 Salt: *H

This salt is missing a character Smile
View user's profile Send private message
how do i get the salt ?
PostPosted: Mon Feb 15, 2010 3:59 pm Reply with quote
Sibar
Beginner
Beginner
 
Joined: Apr 14, 2009
Posts: 4




help please ..
View user's profile Send private message
PostPosted: Sat Nov 20, 2010 2:21 pm Reply with quote
delorean75
Regular user
Regular user
 
Joined: Nov 20, 2010
Posts: 5




good morning?
I need help to decrypt a file MD5:

4d0689a22b945aa6e9bb1188d19d3c87

I thank all who can help me,
thanks Rolling Eyes
View user's profile Send private message
MD5 Help?
  www.waraxe.us Forum Index -> All other hashes
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT  
Page 1 of 1  

  
  
 Post new topic  Reply to topic  




Powered by phpBB © 2001-2008 phpBB Group






Space Raider game for Android, free download - Space Raider gameplay video - Zone Raider mobile games
All logos and trademarks in this site are property of their respective owner. The comments and posts are property of their posters, all the rest (c) 2004-2020 Janek Vind "waraxe"
Page Generation: 0.165 Seconds