Zer0pts2020Canouguessit? Posted on 2020-10-08 Edited on 2024-09-08 In Web 知识点basename()特性的利用、利用特殊字符绕过正则 Read more »
NCTF2019sqli Posted on 2020-10-08 Edited on 2024-09-08 In Web 信息收集,发现robots.txt那里给了提示 hint.txt: Read more »
网鼎杯 2020 白虎组PicDown Posted on 2020-10-08 Edited on 2024-09-08 In Web 知识点文件包含、linux 文件操作符 、 进程、 flask简单审计、python反弹Shell Read more »
GKCTF2020EZ三剑客-EzWeb Posted on 2020-10-08 Edited on 2024-09-08 In Web 知识点内网ssrf 打 redis服务 、结合gopher协议 Read more »
CVE2020-7066 Posted on 2020-10-08 Edited on 2020-12-14 In CVE学习 cve-2020-7066 主要是针对 get_headers()函数的漏洞,get_headers()函数会截断 url中 空字符(\0 %00)后的字符 Read more »
XNUCA2019QualifierEasyPHP Posted on 2020-10-08 Edited on 2024-09-08 In Web 123456789101112131415161718192021222324252627282930313233343536<?php $files = scandir('./'); foreach($files as $file) { if(is_file($file)){ if ($file !== "index.php") { unlink($file); } } } include_once("fl3g.php"); if(!isset($_GET['content']) || !isset($_GET['filename'])) { highlight_file(__FILE__); die(); } $content = $_GET['content']; if(stristr($content,'on') || stristr($content,'html') || stristr($content,'type') || stristr($content,'flag') || stristr($content,'upload') || stristr($content,'file')) { echo "Hacker"; die(); } $filename = $_GET['filename']; if(preg_match("/[^a-z\.]/", $filename) == 1) { echo "Hacker"; die(); } $files = scandir('./'); foreach($files as $file) { if(is_file($file)){ if ($file !== "index.php") { unlink($file); } } } file_put_contents($filename, $content . "\nJust one chance");?> 参考了guoke师傅的WP: Read more »