REH Posted December 11, 2005 CID Share Posted December 11, 2005 Anyone know what type of encryption this is? $1$IsMZ4kE5$.y7Qql446Yv1ydLaouHgC1 Quote Link to comment Share on other sites More sharing options...
Indestructable Posted December 11, 2005 CID Share Posted December 11, 2005 oh, god no. where did you get this from? Quote Link to comment Share on other sites More sharing options...
REH Posted December 11, 2005 Author CID Share Posted December 11, 2005 oh, god no. where did you get this from? From a website of mine, I just installed a new script.. and need to know the type of encryption it uses. Quote Link to comment Share on other sites More sharing options...
Indestructable Posted December 11, 2005 CID Share Posted December 11, 2005 hmm, you could always try www.hackthissite.org ask someone over there Quote Link to comment Share on other sites More sharing options...
jypagan Posted December 11, 2005 CID Share Posted December 11, 2005 its not 128 for sure has to many characters Quote Link to comment Share on other sites More sharing options...
Swimmer Posted January 3, 2006 CID Share Posted January 3, 2006 34 characters.. with $1$ look like MD5 for php... i believe it is the crypt function.. here is what i found.. http://www.php.net/manual/en/function.crypt.php <?php if (CRYPT_STD_DES == 1) { echo 'Standard DES: ' . crypt('rasmuslerdorf', 'rl') . "n"; } if (CRYPT_EXT_DES == 1) { echo 'Extended DES: ' . crypt('rasmuslerdorf', '_J9..rasm') . "n"; } if (CRYPT_MD5 == 1) { echo 'MD5: ' . crypt('rasmuslerdorf', '$1$rasmusle$') . "n"; } if (CRYPT_BLOWFISH == 1) { echo 'Blowfish: ' . crypt('rasmuslerdorf', '$2a$07$rasmuslerd...........$') . "n"; } ?> The above example will output something similar to: Standard DES: rl.3StKT.4T8M Extended DES: _J9..rasmBYk8r9AiWNc MD5: $1$rasmusle$rISCgZzpwk3UhDidwXvin0 Blowfish: $2a$07$rasmuslerd............nIdrcHdxcUxWomQX9j6kvERCFjTg7Ra Quote Link to comment Share on other sites More sharing options...
asubaseball727 Posted January 3, 2006 CID Share Posted January 3, 2006 I'm completely oblivious to why this kind of stuff matters. What can you do when you decrypt it? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.