Re: [VB.Net]MD5 Encrypter
Woot! Hope you could've done decryptor also :glare:
Re: [VB.Net]MD5 Encrypter
Quote:
Originally Posted by
PowahAlert
Woot! Hope you could've done decryptor also :glare:
md5 is a one way, you know that right? :glare:
Re: [VB.Net]MD5 Encrypter
Quote:
Originally Posted by
Rice
md5 is a one way, you know that right? :glare:
until someone finds out how to decrypt it.
Re: [VB.Net]MD5 Encrypter
Quote:
Originally Posted by
PowahAlert
Woot! Hope you could've done decryptor also :glare:
i lol'd
Re: [VB.Net]MD5 Encrypter
Or you could make a new php file and type in
PHP Code:
<?php
echo md5(your words);
?>
saves all the downloading and shit...
Re: [VB.Net]MD5 Encrypter
yeah but then u have to edit the php file every time u want to encrypt a new word
Re: [VB.Net]MD5 Encrypter
Quote:
Originally Posted by
viper67
yeah but then u have to edit the php file every time u want to encrypt a new word
PHP Code:
<?php
if(isset($_GET['text']))
{
$md5 = md5($_GET['text']);
$_GET['text'] = htmlspecialchars($_GET['text']);
echo $_GET['text'] . ' ~>MD5~> ' . $md5;
} else {
$_GET['text'] = 'String to convert to MD5';
}
echo '<form action="" method="get">
<input type="text" name="text" value="'.$_GET['text'].'" />
<input type="submit" name="convert" value="Convert to MD5" />
</form>';
myfile.php?text=Hello, World
Re: [VB.Net]MD5 Encrypter
Good job on the project, but it's pretty pointless.
Re: [VB.Net]MD5 Encrypter
well its not pointless for me :]
Thanks for the comments though, criticism is always welcome :]
Re: [VB.Net]MD5 Encrypter
......................
Fine.. I'll just leave this here to show how stupid this is....
HOLY SHIT, ITS MD5!!!
Re: [VB.Net]MD5 Encrypter
again, at least i dont have to open the website, this sits on my desktop, you can call it pointless all you want but it works for me.
Re: [VB.Net]MD5 Encrypter
Quote:
Originally Posted by
viper67
again, at least i dont have to open the website, this sits on my desktop, you can call it pointless all you want but it works for me.
You seem to be afraid of tabbed browsing. It's convenient yo.
And there's no reason you should be calculating MD5s by hand. You're doing something wrong.
Re: [VB.Net]MD5 Encrypter
nah, i am working on a server emulator, and rather then make a php scirpt to create new accounts for my testers i just add them to the db manually, so i need the md5 for there passwords, this is just easier for me.
Re: [VB.Net]MD5 Encrypter
Quote:
Originally Posted by
viper67
nah, i am working on a server emulator, and rather then make a php scirpt to create new accounts for my testers i just add them to the db manually, so i need the md5 for there passwords, this is just easier for me.
See, you're doing it wrong.
Both MySQL (MySQL :: MySQL 5.5 Reference Manual :: 11.13 Encryption and Compression Functions) and MSSQL (HASHBYTES (Transact-SQL)) can calculate MD5s for you.
Stop being noob, thx.
Re: [VB.Net]MD5 Encrypter
Thats true, but again its just another step, i like my way so stop being a flamer, thx.
Re: [VB.Net]MD5 Encrypter
Quote:
Originally Posted by
viper67
Thats true, but again its just another step, i like my way so stop being a flamer, thx.
Just another step? Not really. You're inserting shit into a database anyway, doing the MD5 there is easier. It's actually removing a step.
And right now you're putting yourself in a position of knowing everyone's passwords which completely defeats the purpose of using hashes over plaintext passwords.
If you can't put up a PHP page to add accounts for testers, you probably aren't good enough to write a good emulator. And modifying an existing one isn't writing one.
In fact, if you think that doing it manually is more efficient than setting up an automated method of doing it, you're probably writing some of the worst code possible to do simple tasks.