#Web安全

[GoogleCTF2019 Quals]Bnv(本地dtdxxe)


WUST-CTF2020(Web/Misc/Crypto)

终于AK了一次WEB~~~~~😃


MRCTF(Web+Misc+Crypto)

web

Ezpop

<?php
//flag is in flag.php
//And Crack It!
class Modifier {
    protected  $var;
    public function append($value){
        include($value);
    }
    public function __invoke(){
        $this->append($this->var);
    }
}

class Show{
    public $source;
    public $str;
    public function __construct($file='index.php'){
        $this->source = $file;
        echo 'Welcome to '.$this->source."<br>";
    }
    public function __toString(){
        return $this->str->source;
    }

    public function __wakeup(){
        if(preg_match("/gopher|http|file|ftp|https|dict|\.\./i", $this->source)) {
            echo "hacker";
            $this->source = "index.php";
        }
    }
}

class Test{
    public $p;
    public function __construct(){
        $this->p = array();
    }

    public function __get($key){
        $function = $this->p;
        return $function();
    }
}

if(isset($_GET['pop'])){
    @unserialize($_GET['pop']);
}
else{
    $a=new Show;
    highlight_file(__FILE__);
}


易霖博YCTF-共克时艰-停课不停赛(web)

注一下
好像是攻防世界的原题。。
注册一个"||updatexml(1,(version()),1)#
登陆后。修改密码会报错。报错注入拿flag。用()绕过空格
"||updatexml(1,concat(0x7e,(select(flag)from(flag)),0x7e),1)#


[SWPUCTF 2016]Web blogsys(hash扩展攻击+变量覆盖)

github下载源码审计。
首先从配置文件common.php开始审计
一个很明显的变量覆盖漏洞


[HITCON 2017]Baby^h Master PHP(Phar反序列化+匿名函数)

题目给出了源码。有两个功能。一个是upload。一个是show
upload呢。是输入一个URL。然后会访问URL/avatar.gif然后保存到本地
show呢。是读取这个gif文件。


[HBCTF2017]大美西安(sql注入)

首先就一个登陆和注册。貌似没注入。
进去以后URL如下http://00f9d39c-5972-4a18-9744-2d59c6264341.node3.buuoj.cn/index.php?file=download


BUUCTF kzone(sql注入)


[CSAWQual 2019]Web_Unagi(XXE绕过。报错带数据)


BJDCTF 2nd Web题解

[BJDCTF 2nd]fake google
模板注入。不多说了。没过滤


[GYCTF2020]Node Game(CRLF头部注入)

题目给出了源码

/
接受action参数。如果没有就默认为index
file=dirname+/template/+action+.png
然后用pug进行渲染。可以理解为执行这个文件

/file_upload
定义了只能由127.0.0.1访问。并且是remoteaddress不能伪造
那么得找一个SSRF的点
文件上传。
filepath=/uploads/+mimetype+/
而mimetype可控。那么我们可以跨目录
dir_file=dirname+filepath+filename
那么我们可以构造任意路径文件写入

/core
接受一个q参数。然后对其进行黑名单检测
然后对q输入的值进行请求。。
当时知道这个点可以SSRF。但是不会构造数据包。。


[BSidesCF 2020]Bulls23

给了一个流量包和网址。
分析流量包。
有三个URL

bash.org
builts-23-04xxxxxxxxxxxxxxxx&port=8888
n-gate.com


[BSidesCF 2019]Mixer(CBC整块替换)

要求以admin登陆。将HTML中的is_admin改为1也不行。
并且cookie中存在一个rack.session和user

仿佛是加密过后的数据


[BSidesCF 2019]SVGMagic(xxe)

进去就一个上传。有一串英文。意思是将SVG转换为PNG。
先去看看SVG是个啥。


[HarekazeCTF2019]Easy Notes(代码审计)

这题。先去github上。把源码下下来。
先随便用个号登陆。存在一个add note和下载功能。成为admin得到flag。着重看下下载功能。


← 上一页 下一页 →