unknowncheats uc-forum.com ucdownloads ucdownloads.com

Go Back   UC-Tutorials - Multiplayer Game Hacking and Cheat Tutorials > Web / Scripting > PHP

- Sponsored Advertisement -
http://www.myfpscheats.com/


Reply
 
Thread Tools Display Modes
  #1  
Old 04-13-2010, 03:46 AM
learn_more learn_more is offline
Member
 
Join Date: Feb 2010
Posts: 59
Default Md5 generator

by Decaf,

This is a simple MD5 generator, you can read about the md5 here. Enjoy!

PHP Code:
<html>
<head>
<title>Md5 Hasher</title>
</head>
<body>
<h2 align="center">Md5 Hasher!</h2>
    <form method="post">
        <input type="text" name="md5" />&nbsp; Please enter a string to hash.<br />
        <input type="file" name="md5-file" />&nbsp; Please Upload a file to hash (optional).<br />
        <input type="submit" value="Hash It!" />
    </form>
<hr color="black" size="2" noshade />
<?php
if ($_POST["md5"] == "") {
    print 
"No string entered";
} else {
    print 
"The String's Md5 is:<b>&nbsp;";
    print 
md5($_POST["md5"]);
    print 
"</b>";
}
// Spacer
print "<br />";
// End Spacer
if ($_POST["md5-file"] == "") {
    print 
"No file submitted";
} else {
    print 
"The File's Md5 is:<b>&nbsp;";
    print 
md5($_POST["md5-file"]);
    print 
"</b>";
}
?>
<hr color="#999999" size="2" noshade />
<font style="font-size:8pt;font-style:italic;">The larger the file you upload (1 MB+) will take longer to upload.  
Files and inputted strings are not saved to the server.</font>
</body>
</html>
Reply With Quote
Reply

  • Submit Thread to Digg
  • Submit Thread to del.icio.us
  • Submit Thread to StumbleUpon
  • Submit Thread to Google
  • Submit Thread to Facebook
  • Submit Thread to My Yahoo!
  • Submit Thread to MySpace
  • Submit Thread to Twitter
  • Submit Thread to Reddit

Tags
generator, md5

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



All times are GMT. The time now is 06:15 AM.