BUU刷题记录-[0CTF 2016]piapiapia

 

​​​​​​1.扫描后台发现源码和一个注册界面

2.先大概看一下代码

先看class.php

<?php
require('config.php');

class user extends mysql{
	private $table = 'users';

	public function is_exists($username) {
		$username = parent::filter($username);

		$where = "username = '$username'";
		return parent::select($this->table, $where);
	}
	public function register($username, $password) {
		$username = parent::filter($username);
		$password = parent::filter($password);

		$key_list = Array('username', 'password');
		$value_list = Array($username, md5($password));
		return parent::insert($this->table, $key_list, $value_list);
	}
	public function login($username, $password) {
		$username = parent::filter($username);
		$password = parent::filter($password);

		$where = "username = '$username'";
		$object = parent::select($this->table, $where);
		if ($object && $object->password === md5($password)) {
			return true;
		} else {
			return false;
		}
	}
	public function show_profile($username) {
		$username = parent::filter($username);

		$where = "username = '$username'";
		$object = parent::select($this->table, $where);
		return $object->profile; //返回查询数据中的profile
	}
	public function update_profile($username, $new_profile) {
		$username = parent::filter($username);
		$new_profile = parent::filter($new_profile);

		$where = "username = '$username'";
		return parent::update($this->table, 'profile', $new_profile, $where);
	}
	public function __tostring() {
		return __class__;
	}
}

class mysql {
	private $link = null;

	public function connect($config) {
		$this->link = mysql_connect(
			$config['hostname'],
			$config['username'], 
			$config['password']
		);
		mysql_select_db($config['database']);
		mysql_query("SET sql_mode='strict_all_tables'");

		return $this->link;
	}

	public function select($table, $where, $ret = '*') {
		$sql = "SELECT $ret FROM $table WHERE $where";
		$result = mysql_query($sql, $this->link);
		return mysql_fetch_object($result);
	}

	public function insert($table, $key_list, $value_list) {
		$key = implode(',', $key_list);
		$value = '\'' . implode('\',\'', $value_list) . '\''; 
		$sql = "INSERT INTO $table ($key) VALUES ($value)";
		return mysql_query($sql);
	}

	public function update($table, $key, $value, $where) {
		$sql = "UPDATE $table SET $key = '$value' WHERE $where";
		return mysql_query($sql);
	}

	public function filter($string) {
		$escape = array('\'', '\\\\');
		$escape = '/' . implode('|', $escape) . '/';
		$string = preg_replace($escape, '_', $string);

		$safe = array('select', 'insert', 'update', 'delete', 'where');
		$safe = '/' . implode('|', $safe) . '/i';
		return preg_replace($safe, 'hacker', $string);
	}
	public function __tostring() {
		return __class__;
	}
}
session_start();
$user = new user();
$user->connect($config);

这里是整个后台的核心代码。user类对用户发送的数据进行处理。sql类用于与数据库的交互并对传入的数据进行了判断和过滤。这里大致了解功能就可,先不必细看。

config.php。可以看到flag在这里面

<?php
	$config['hostname'] = '127.0.0.1';
	$config['username'] = 'root';
	$config['password'] = '';
	$config['database'] = '';
	$flag = '';
?>

index.php和register.php里面没有什么有价值的内容,暂且跳过。

看profile.php。这里有几个点需要注意一下,第一点是对$profile进行了一个反序列化。第二点fie_get_contents读取$profile['photo']里面的内容并通过base64编码展示在前端页面。结合config.php里面的flag。猜测可不可以把config.php放进$profile['phpto']。

<?php
	require_once('class.php');
	if($_SESSION['username'] == null) {
		die('Login First');	
	}
	$username = $_SESSION['username'];
	$profile=$user->show_profile($username);
	if($profile  == null) {
		header('Location: update.php');
	}
	else {
		$profile = unserialize($profile);//反序列化对象数组
		$phone = $profile['phone'];
		$email = $profile['email'];
		$nickname = $profile['nickname'];
		$photo = base64_encode(file_get_contents($profile['photo']));
?>

 

 最后一个upload.php。处理上传后的文件。这里对传出来的phone,email,nickname都做了限制,前面两个都是返回flase则退出脚本,不好操作。注意最后一个。这里的判断规则和前面两个不一样。当匹配结果返回true的时候终止脚本,细看一下。要求nickname的内容不能是非数字字母并且长度不能大于10。这里就有操作的余地了。php大多数函数都不能处理数组。这里可以传入nickname[]=xxx绕过长度限制。接下来的就是把传入的文件名进行md5加密后保存,这里进行了md5加密。所以文件名并不可控,没办法传木马。最后$profile['photo']保存上传的文件路径。

 

<?php
	require_once('class.php');
	if($_SESSION['username'] == null) {
		die('Login First');	
	}
	if($_POST['phone'] && $_POST['email'] && $_POST['nickname'] && $_FILES['photo']) {

		$username = $_SESSION['username'];
		if(!preg_match('/^\d{11}$/', $_POST['phone']))
			die('Invalid phone');

		if(!preg_match('/^[_a-zA-Z0-9]{1,10}@[_a-zA-Z0-9]{1,10}\.[_a-zA-Z0-9]{1,10}$/', $_POST['email']))
			die('Invalid email');
		
		if(preg_match('/[^a-zA-Z0-9_]/', $_POST['nickname']) || strlen($_POST['nickname']) > 10)
			die('Invalid nickname');

		$file = $_FILES['photo'];
		if($file['size'] < 5 or $file['size'] > 1000000)
			die('Photo size error');

		move_uploaded_file($file['tmp_name'], 'upload/' . md5($file['name']));
		$profile['phone'] = $_POST['phone'];
		$profile['email'] = $_POST['email'];
		$profile['nickname'] = $_POST['nickname'];
		$profile['photo'] = 'upload/' . md5($file['name']);

		$user->update_profile($username, serialize($profile));
		echo 'Update Profile Success!<a href="profile.php">Your Profile</a>';
	}
	else {
?>

3.现在可以大致理一下了。

①通过config.php读取flag

②updata.php保存上传的文件并将用户信息序列化后插入(更新)数据库。

③profile.php从读取信息进行反序列化。并将上传图片的内容base64编码后展示在前端。

④目前看出来的可操作的地方只有nickname。还要想办法把config.php放进$profile['photo']中。这里看到$profile['photo']是在$profile['name']后面的,并且$profile会被序列以及反序列化。因为$profile['photo']的内容是会被显示出来的,所以考点很明显了。

利用nickname进行反序列化字符逃逸。

现在本地测试一下生成的代码的序列化形式。这里我们要将photo的值改为config.php

a:4:{s:5:"phone";s:10:"1234567891";s:5:"email";s:16:"123456789@qq.com";s:8:"nickname";a:1:{i:0;s:3:"123";}s:5:"photo";s:10:"config.php";}

 截取";}s:5:"photo";s:10:"config.php";} 将前面的闭合 此时payload长度为33。现在要去filter函数找一下过滤的字符串。可以发现只能当输入where被替换为hacker时,字符长度会加1。此时输入33个where,会被替换成33个hacker。替换以后序列化标记内容的长度不变,但实际长度会膨胀,多出33位。这33位刚好占据";s:5:"photo";s:10:"config.php";}的位置。此时;}s:5:"photo";s:10:"config.php";}就逃逸出来,形成新的序列化对象

	public function filter($string) {
		$escape = array('\'', '\\\\');
		$escape = '/' . implode('|', $escape) . '/';
		$string = preg_replace($escape, '_', $string);

		$safe = array('select', 'insert', 'update', 'delete', 'where');
		$safe = '/' . implode('|', $safe) . '/i';
		return preg_replace($safe, 'hacker', $string);
	}
	public function __tostring() {
		return __class__;
	}

构造payload 。最后在源码中base64解码即可得到flag

PS:这题还是做了挺久的,一开始看到登录界面以为是sql注入。扫到注册界面的时候,还试过文件上传和XSS。审计的时候才发现是序列化的问题。也是第一次遇到反序列化字符逃逸,学到了。

做的时候参考了两位师傅的博客, 觉得写得很好。 

https://www.jianshu.com/p/3b44e72444c1

https://www.cnblogs.com/litlife/p/11690918.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值