Welcome to the MMOtop - Arcemu, Mangos, Trinity.
+ Reply to Thread
Results 1 to 4 of 4
  1. #1
    Jerry's Avatar
    Status : Jerry is offline
    Join Date : Mar 2009
    Location : Serbia
    Posts : 2,321
    Thanks: 223
    Thanked 501 Times in 286 Posts
    Rep Power : 10
    Reputation:2077Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute

    Default [Release] Account Creation Page

    Well simply this is just a a simple account creation page I made, and I also made the background for it.

    Features:
    Simple Clean Interface
    Error's in your account creation easy to understand and exact
    Easy to add server message / servre login address.
    Supports WotLK, Burning Crusade, and Original account types just by checking off your WoW version.
    Checks to see if email is in use.
    Password Confirm to make sure you typed in what you wanted.
    Checks to see if account name is already in use.

    Note: You can check off just WotLK to make your account WotLK, or Both BC and WotLK, you don't need to check both, but you can!

    You only need to edit the following!

    Code:
    $db_host='localhost';
    $db_user='USERNAME';
    $db_pass='PASSWORD';
    $db_name='ACCOUNT DATABASE';
    $server_message='MESSAGE! GOOD PLACE FOR SERVER LOGIN ADDRESS!'
    Download:
    [Only registered and activated users can see links. ]

    Preview:

  2. The Following 2 Users Say Thank You to Jerry For This Useful Post:

    AwkwardDev (05-22-2010), mazdachen (04-03-2010)

  3. #2
    Status : clintmartin3 is offline
    Join Date : Jun 2009
    Posts : 3
    Thanks: 0
    Thanked 0 Times in 0 Posts
    Rep Power : 0
    Reputation:10clintmartin3 is on a distinguished road

    Default Nice, but...

    It works great except for the password hash. Stores it as direct text. Anybody know how to make this convert the text to hash for database storage?

  4. #3
    Jerry's Avatar
    Status : Jerry is offline
    Join Date : Mar 2009
    Location : Serbia
    Posts : 2,321
    Thanks: 223
    Thanked 501 Times in 286 Posts
    Rep Power : 10
    Reputation:2077Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute Jerry has a reputation beyond repute

    Default

    Overview

    So you're using MD5 to encrypt your users passwords and you think it's fully secured? In this tutorial, I'll explain how to secure your MD5 passwords and how they work.

    Many people think the MD5 hash string is the password but encrypted. It's in fact a 32-character hexadecimal number corresponding to the string you entered. It does not contains your password at all. But is it possible to login even if you don't know the real password? Yes...

    How it works

    In a PHP script, you can simply use the md5() function to generate the MD5 hash from a string.

    Code:
    <?php
    
    $string = 'Something';
    
    $hash = md5($string);
    
    echo $hash;
    
    ?>
    The above script is going to output: 73f9977556584a369800e775b48f3dbe

    Making it secure

    While it might look secure and impossible to break, it's not. If 2 prefixes have the same hash, a similar prefix can be randomly generated and its going to work. So you can basically login using another password that generate the same MD5 hash. Multiple websites have the ability to reverse a MD5 hash into a usable password.

    The solution is to use a Salt before generating the MD5 hash. A salt is a small string containing random characters that are not known by the user. The hash would then be generated this way:

    Code:
    <?php
    
    $string = 'something';
    
    $salt = 's+(_a*';
    
    $hash = md5($string.$salt);
    
    ?>
    $string is the password entered by the user and $salt is a randomly generated string.

    The hacker can now have fun trying to reverse the hash but he's going to get a password with the salt. Entering that password is going to return invalid login! Why? The salt is being included twice:

    hash = md5 ( ( password + salt ) + salt )

    This method is used by many commercial applications (Invision Power Board 2.x for example).

  5. #4
    Status : sortremord is offline
    Join Date : Mar 2010
    Posts : 2
    Thanks: 0
    Thanked 0 Times in 0 Posts
    Rep Power : 0
    Reputation:10sortremord is on a distinguished road

    Default

    The file is broken.


 

Similar Threads

  1. [Tutorial] How to setup an Account Creation page for your server
    By Jerry in forum Emulator Server Guides
    Replies: 6
    Last Post: 03-17-2012, 09:52 AM
  2. [release] Zaxer's Account Creator Ver 3.0
    By Jerry in forum Tools and Applications
    Replies: 6
    Last Post: 03-07-2011, 08:18 PM
  3. WoW Blizzlike Page (Complete)
    By Jerry in forum Emulator Website / Script's Releases
    Replies: 18
    Last Post: 05-23-2010, 08:15 PM
  4. Way to make great abuse account
    By Bullseye in forum Warcraft Bots
    Replies: 2
    Last Post: 04-26-2010, 05:10 PM
  5. Pro Account Creator V1
    By Jerry in forum Tools and Applications
    Replies: 10
    Last Post: 04-05-2010, 06:35 PM

Visitors found this page by searching for:

Trinity Account Creation Page

mangos account creation page

trinitycore account creation page

trinity core account creatortrinitycore account creation scriptWoW Account Creationmangos account creation scripttrinitycore simple accountaccount creation site for trinitycorewow acc creation pageTrinity Account Pagesimple account creation page trinitycorephp code create account web page mangostrinitycore simple account creationwow bc mangos account webaccount creator page trinitysite mangos trinitycore account creation pagesee emulator account creatorTrinity account creation page TBCwow account registration page for trinity coreaccount creation php script mangos[Release] Blizzlike Frontendtrintiy accoun creation pageaccount create script für mangosTBC account creation page
SEO Blog

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts