User Tools

Site Tools


modsecurity:testing_sql_injection

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

modsecurity:testing_sql_injection [2016/10/14 13:41] – created petermodsecurity:testing_sql_injection [2019/11/30 14:20] (current) – removed peter
Line 1: Line 1:
-====== ModSecurity - Testing SQL Injection ====== 
- 
-Before going ahead with configuring rules, we will create a PHP script which is vulnerable to SQL injection and try it out.  Please note that this is just a basic PHP login script with no session handling.  Be sure to change the MySQL password in the script below so that it will connect to the database: 
- 
- 
-<file php /var/www/login.php> 
-<html> 
-<body> 
-<?php 
-  if(isset($_POST['login'])) 
-  { 
-    $username = $_POST['username']; 
-    $password = $_POST['password']; 
-    $con = mysqli_connect('localhost','root','password','sample'); 
-    $result = mysqli_query($con, "SELECT * FROM `users` WHERE username='$username' AND password='$password'"); 
-    if(mysqli_num_rows($result) == 0) 
-        echo 'Invalid username or password'; 
-    else 
-        echo '<h1>Logged in</h1><p>A Secret for you....</p>'; 
-  } 
-  else 
-  { 
-?> 
-    <form action="" method="post"> 
-      Username: <input type="text" name="username"/><br /> 
-      Password: <input type="password" name="password"/><br /> 
-      <input type="submit" name="login" value="Login"/> 
-    </form> 
-<?php 
-  } 
-?> 
-</body> 
-</html> 
-</file> 
- 
- 
-This script will display a login form.  Entering the right credentials will display a message "A Secret for you." 
- 
-We need credentials in the database.  Create a MySQL database and a table, then insert usernames and passwords. 
- 
-<code bash> 
-mysql -u root -p 
-</code> 
- 
-This will take you to the **mysql>** prompt 
- 
-<code mysql> 
-create database sample; 
-connect sample; 
-create table users(username VARCHAR(100),password VARCHAR(100)); 
-insert into users values('john','pwd'); 
-insert into users values('alice','secret'); 
-quit; 
-</code> 
- 
-Open your browser, navigate to http://yourwebsite.com/login.php and enter the right pair of credentials. 
- 
-<code> 
-Username: john 
-Password: pwd 
-</code> 
- 
-You'll see a message that indicates successful login.  Now come back and enter a wrong pair of credentials-- you'll see the message **Invalid username or password**. 
- 
-We can confirm that the script works right.  The next job is to try our hand with SQL injection to bypass the login page.  Enter the following for the **username** field: 
- 
-<code sql> 
-' or true --  
-</code> 
- 
-**NOTE**:   There should be a space after **--** this injection won't work without that space.  Leave the password field empty and hit the login button. 
- 
-Voila!  The script shows the message meant for authenticated users. 
- 
  
modsecurity/testing_sql_injection.1476452508.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki