HTB-Vaccine靶机渗透 发表于 2026-07-30 更新于 2026-08-01 Task1Besides SSH and HTTP, what other service is hosted on this box? 除了SSH和HTTP服务,还有什么服务? 这里nmap扫一下就出了 阅读全文 »
HTB-Three靶机渗透 发表于 2026-03-18 更新于 2026-07-24 Task1How many TCP ports are open? 问多少个tcp端口开放,用nmap扫描 nmap -sV -sT IP 阅读全文 »
HTB-Responder靶机渗透 发表于 2026-03-08 更新于 2026-04-10 Task1When visiting the web service using the IP address, what is the domain that we are being redirected to? 访问web服务的时候,被重定向的域是什么? 浏览器访问目标靶机的IP,发现重定位了地址 阅读全文 »
HTB-Crocodile靶机渗透 发表于 2026-03-04 更新于 2026-04-10 Task1What Nmap scanning switch employs the use of default scripts during a scan? 问nmap什么选项是使用默认脚本进行扫描 -sC 阅读全文 »
HTB-Sequel靶机渗透 发表于 2026-03-04 更新于 2026-04-10 Task1During our scan, which port do we find serving MySQL? 问Mysql的端口,通过fscan扫描得 阅读全文 »
HTB-Appointment靶机渗透 发表于 2026-02-20 更新于 2026-03-04 Task1What does the acronym SQL stand for? 问SQL的全称是什么 SQL的全称是 Structured Query Language 阅读全文 »
HTB-Redeemer靶机渗透 发表于 2026-02-09 更新于 2026-02-21 Task1Which TCP port is open on the machine? 问哪个TCP端口是开放的,用fscan扫描,fscan -h能扫出来有一个端口是6379 阅读全文 »
VNCTF2026-writeup 发表于 2026-01-31 更新于 2026-02-21 signin12345678910111213141516<?phphighlight_file(__FILE__);$blacklist = ['/', 'convert', 'base', 'text', 'plain'];$file = $_GET['file'];foreach ($blacklist as $banned) { if (strpos($file, $banned) !== false) { die("这个是不允许的哦~"); }}if (isset($file) && strlen($file) <= 20){ include $file;}; 给了waf,说不能用/,convert,base,text,plain filter伪协议算是用不了了,然把目光放到data伪协议,data伪协议可以省略MIME类型,可以不需要//text/plain 阅读全文 »