modsecurity:testing_sql_injection
Differences
This shows you the differences between two versions of the page.
modsecurity:testing_sql_injection [2016/10/14 13:41] – created peter | modsecurity: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. | ||
- | |||
- | |||
- | <file php / | ||
- | < | ||
- | < | ||
- | <?php | ||
- | if(isset($_POST[' | ||
- | { | ||
- | $username = $_POST[' | ||
- | $password = $_POST[' | ||
- | $con = mysqli_connect(' | ||
- | $result = mysqli_query($con, | ||
- | if(mysqli_num_rows($result) == 0) | ||
- | echo ' | ||
- | else | ||
- | echo '< | ||
- | } | ||
- | else | ||
- | { | ||
- | ?> | ||
- | <form action="" | ||
- | Username: <input type=" | ||
- | Password: <input type=" | ||
- | <input type=" | ||
- | </ | ||
- | <?php | ||
- | } | ||
- | ?> | ||
- | </ | ||
- | </ | ||
- | </ | ||
- | |||
- | |||
- | 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. | ||
- | |||
- | <code bash> | ||
- | mysql -u root -p | ||
- | </ | ||
- | |||
- | This will take you to the **mysql> | ||
- | |||
- | <code mysql> | ||
- | create database sample; | ||
- | connect sample; | ||
- | create table users(username VARCHAR(100), | ||
- | insert into users values(' | ||
- | insert into users values(' | ||
- | quit; | ||
- | </ | ||
- | |||
- | Open your browser, navigate to http:// | ||
- | |||
- | < | ||
- | Username: john | ||
- | Password: pwd | ||
- | </ | ||
- | |||
- | You'll see a message that indicates successful login. | ||
- | |||
- | We can confirm that the script works right. | ||
- | |||
- | <code sql> | ||
- | ' or true -- | ||
- | </ | ||
- | |||
- | **NOTE**: | ||
- | |||
- | Voila! | ||
- | |||
modsecurity/testing_sql_injection.1476452508.txt.gz · Last modified: 2020/07/15 09:30 (external edit)