Topic: "Which type of hash?? $1$" (page 1 of 1)

1
Author Post
davs
groupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmaster
Hello,

does anybody know which type of hash is this $1$VV5.4y5.$JbhytGQBPmDHBbrSjF2i7. (that is password 123456 in
phpC database),
i think that is md5 modified password, but i'm not sure and do not know how to retrieve a plain text of this hash, (123456). is there any kind of programm or something like that??

thx in advice!

regards
Edited by davs on 19.06.2008 08:18:40
private message Website
Gome
groupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmaster
looks like $ is a seperation character and you have to find the hash for the last part.
private message
matrixman
groupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmaster
Looks more like a MD5-based Unix crypt.
For example in php:
linkhttp://us.php.net/crypt

Edit: Here is how to get it:
<?php
echo crypt('123456', '$1$VV5.4y5.$');
?>


matrixman
Edited by matrixman on 16.06.2008 19:01:39
private message EMail
magdeburg
groupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmaster
hey matrixman,
could you do me a favour and solve the last three steganos.
I kinda cannot wait to see someone having solved every damn challenge on this site :stegano:
private message Website
velo
groupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmaster
davs,
it is MD5 UNIX hash, it CAN be bruteforced with linkhttp://www.insidepro.com/eng/passwordspro.shtml

cy
private message
davs
groupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmastergroupmaster
thx to all, i figure out all about this type of hash and i solve my problem on diferent way! :-) Password reminder is a great thing! :-)

private message Website

Topic: "Which type of hash?? $1$" (page 1 of 1)

1