how to set md5 password phpmyadmin

How to Set a MD5 Password in PHPMyAdmin?

The MD5 encryption algorithm is still one of the most used in the world, and specially in MySQL tables.
In this tutorial, I’ll show you how it works in a database, and especially how to generate it easily with PHPMyAdmin.

When inserting a new line with PHPMyAdmin, there is a dropdown menu on the left of the field. Pick the MD5 function in the list and enter the value in clear text. It will automatically convert it in MD5 on insertion.

Today, I’ll give you a step-by-step tutorial on how to create a table to store MD5, how to set your MD5 Password and how to manage this in PHP directly.

Master Linux Commands
Your essential Linux handbook
Want to level up your Linux skills? Here is the perfect solution to become efficient on Linux. 20% off today!

Download now

Creating a demo table

Before going further, I’ll create a basic MySQL table to show you how it works.
My table will simply be “users”, with three fields:

  • auto_id – INT(11): I often create a first field like this one. The goal is to have an auto-incremented number for each line (you can check the A_I checkbox on the same line to do the same).
  • login – VARCHAR(32): It’s just an example, you can use an email address or whatever instead. In this basic example, it’ll be a login.
  • password – VARCHAR(32): The one that interest us today. An MD5 hash is composed of 32 hexadecimal characters, so you need to have 32 in length.

Here is the corresponding MySQL query to create the table if you want to try while reading this post:

CREATE TABLE `users` (
  `auto_id` int(11) NOT NULL,
  `login` varchar(32) NOT NULL,
  `password` varchar(32) NOT NULL
)

And the result:

Hide your IP address and location with a free VPN:
Try it for free now, with advanced security features.
2900+ servers in 65 countries. It's free. Forever.

We are now ready to insert a new line in this table!

Insert a new line with PHPMyAdmin

In PHPMyAdmin, you can insert new lines with a form, you don’t need to type the MySQL query each time. In this part, I’ll show you how to do this, but if you are also interested in the MySQL query, I’ll give it to you just after.

Here is how to set a MD5 password while inserting your values in PHPMyAdmin:

  • Browse to the “users” table (or whatever the name of your table is)
  • In the top menu, click on “Insert”
  • A form shows up with all the fields from your MySQL table
  • Then you can fill your form:
    • The “auto_id” needs to stay empty (will be automatically set)
    • Type the “login” you want to create
    • Enter the “password” in clear mode in the value column
  • Before submitting the form, you need to encrypt the password in MD5
    To do this, find the “MD5” function in the dropdown list.
  • Your form should look like this:

    Not so complicated hum? 🙂
  • You can now submit the form, and insert another line if you want
Your Go-To Linux Command Reference!
Download your exclusive free PDF containing the most useful Linux commands to elevate your skills!

Once done, the lines look like this:

The password is correctly encrypted in the field

Set a MD5 Password in MySQL and/or PHP directly

In this part, I’ll show you how to do the same thing directly in MySQL, but also with PHP.
This should be more convenient than PHPMyAdmin to do this automatically.

MySQL

If you followed the previous method with PHPMyAdmin, you may have seen the MySQL query displayed on your screen.
In any case, here is an example:

INSERT INTO users 
(auto_id, login, password) 
VALUES 
(NULL, 'myuser', MD5('clearpassword'));

So, we just add the “MD5()” function to the password in text, and it will insert a line with a MD5 hash.

By the way, the auto_id field is not mandatory, and will be filled automatically even if you don’t set it to “NULL” in the query.
This query will do the same thing for example:

INSERT INTO users 
(login, password) 
VALUES 
('myuser', MD5('clearpassword'));

Once you have the MySQL Query set for your new users, you can click on “SQL” and paste it directly in PHPMyAdmin.
You can find the MySQL documentation here if you have any specific thing to handle. But for my basic table, it’s enough 🙂

PHP

You now know almost everything, the only step missing is how to check the used password is correct on sign in.
I’ll show you with PHP as it’s the most used language for MySQL, but you can find similar functions in other languages too.

Create a user in PHP

In PHP, there is a pack of functions, starting by mysqli_* that allow you to work with MySQL database.
In this first example, we’ll see how to insert a new line directly from PHP.

Let’s start immediately with the code sample:

<?php
//Connect to your database
$mysqli = new mysqli("localhost","user","password","db");

//Verify connection
if ($mysqli -> connect_errno) {
   die("Database error: ".$mysqli->connect_error);
}

//Run your query
$mysqli->query("INSERT INTO users 
(login, password) 
VALUES 
('myuser', MD5('clearpassword'))");

//Other operations if needed
?>

Here is a short explanation:

  • The first lines will manage the database connection.
  • The next paragraph is to check that you are correctly connected (or if there is an error we stop here, the credentials are probably wrong).
  • Then, we run the same query as seen in the MySQL section.
  • At the end you can add any other request or PHP code you want to complete your registration. But at this point the MD5 part is already done.

Verify a user and password in PHP

Good, now we have seen how to set a MD5 password in our table, from PHPMyAdmin or directly with PHP.
But how to check that the password entered on login (in clear text) is the same as the one in the database (in MD5)?

The MD5 algorithm is not reversible, so the only way is to encrypt the password typed in the form before trying to match it with the database.
Something like that for example:

<?php
//Start with the MySQL connection as in the previous example

//Get the values from the form submitted
$user = $_POST['username'];
$pass = $_POST['password'];

//Look for a corresponding user
$result = $mysqli->query("SELECT * FROM users WHERE login='".$user."' AND password='".md5($password)."'");

if($result->num_rows) {
   //user match
}
else {
   //error, incorrect user or password
}

It’s a basic example you need to complete, but it should give you an idea on how it works.
And yes, PHP has also a built-in MD5 function, so it’s easy to use (documentation).

Security issues with MD5

Your Go-To Linux Command Reference!
Download your exclusive free PDF containing the most useful Linux commands to elevate your skills!

If you don’t know, you have to be cautious when you use the MD5 algorithm to store passwords. It’s one of the less secure currently in the world, so if you can it’s better to avoid it.

Why is MD5 not secure?

I already wrote an article on the topic, so I’ll give too many details in here, but in short, there are at least 3 reasons why using MD5 is not a good idea:

  1. Dictionary tables: On MD5Online, there is a database with over 1,150 billions password available. There is a pretty high chance that some of your passwords are available in it. You can try our MD5 decrypter for free here.
  2. Brute force: A brute force attack is a method to find a password by trying millions of possibilities. Components are better and better currently to do this (thanks to the big improvements in GPU computing)
    Here is an illustration from Hive Systems:

    And it’s not just for the MD5 algorithm, is global, whatever the algorithm.
  3. Collisions: With MD5, two words can have the same MD5 hash. So it’s potentially two different passwords that can be used for the same encrypted password. It’s not a good thing in security.

If you want to know more about these reasons, check my post on “Why MD5 is not safe?“.

What you can do to improve security?

You can find more details in the linked post above on how to improve security with several solutions.
But for now, I want to introduce one specific way: adding salt 🙂

Hide your IP address and location with a free VPN:
Try it for free now, with advanced security features.
2900+ servers in 65 countries. It's free. Forever.

A salt is a word you add before and/or after the password to encrypt.
For example, instead of hashing “azerty”, you do it with “md5onlineazerty”
This way, even if your database is hacked, it will be more difficult to find the corresponding password to the hash (this salt is probably not a good example, but just to show you the idea).

When someone tries to sign in, you will do the same thing, you take the password entered the form, and you add the salt before hashing the whole string in MD5.
We’ll see in the last part how to implement this in PHP.

An example with salt in PHP

In PHP, using salt is very similar to what we have already done earlier:

<?php
//Start with the MySQL connection as in the previous example

//Get the values from the form submitted
$salt = "mysaltstring";
$user = $_POST['username'];
$pass = $salt.$_POST['password'];

//Look for a corresponding user
$result = $mysqli->query("SELECT * FROM users WHERE login='".$user."' AND password='".md5($password)."'");

if($result->num_rows) {
   //user match
}
else {
   //error, incorrect user or password
}

The only change in PHP is the concatenation between salt and password (“.”).
It’s the same thing for the registration process

If this process with salt is still complicated for you, feel free to check my post on MD5 Salt here.

Conclusion

That’s it, you now have a good overview on how to use MD5 password in PHPMyAdmin, and also in MySQL and PHP.

I hope this post was useful for you, please share it on your favorite social network or forum! 🙂

Whenever you’re ready for more security, here are things you should think about:

- Break free from Gmail: You should be able to choose what happens to your data. With Proton, only you can read your emails. Get private email.

- Protect yourself online: Use a high-speed Swiss VPN that safeguards your privacy. Open-source, no activity logs. Get Proton VPN risk-free.

- Master Linux commands: A sure method to learn (and remember) Linux commands. Useful ones only, one at a time, with clear explanations. Download the e-book.

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *