摘要:
sqlmapsqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking over of ... 阅读全文
摘要:
上接sql注入知识库-mysql篇(2)表和字段一、检测字段数量order by/group bygroup by / order by +1 ;备注:order by 和 group by 都是用来根据字段排序用的保持数字持续增加,直到得到一个错误响应尽管group by 和 order by 在... 阅读全文
摘要:
上接mysql篇(1)测试数据库版本1.使用自带函数version()@@version@@global.versionexamplesselect version();SELECT * FROM Users WHERE id = '1' AND MID(VERSION(),1,1) = '5';m... 阅读全文
摘要:
1.创建数据库create database test ;2. 创建表create table student (id int , name char(8) , sex char(4));—创建了一个student表,有id name sex 三个字段3. 查看数据表字段select columns... 阅读全文