asp实现的查询某关键词在MSSQL数据库位置的代码

来源:asp之家 时间:2011-02-28 11:18:00 

功能是:以一个关键字为索引,搜索整个数据库,然后返回那个关键字所在的表名和列名。(很赞...特别是入侵的时候找不到用户名与密码所在的表的时候,如果能直接通过输入admin这个关键词找出字段...省得一个表一个表的看了。)于是根据那段语句,写了个asp的脚本,方便大家以后搜寻数据库。

代码如下:

代码如下:


<%
'Confirm a keyword's position of a database(which table & which column)
'By oldjun(http://www.oldjun.com)
'Based on huangzi(http://www.2chuizi.com)'s sql
Server.ScriptTimeout=999999999
Response.Buffer =true
On Error Resume Next
keyword=request("keyword")
if keyword="" then
response.write "Need keyword!"
response.End
End if
dim conn
Set conn = Server.CreateObject("ADODB.Connection")
Dim ConnStr
'ConnectionString,Pls change!
ConnStr="Driver={SQL SERVER};Server=localhost;UID=sa;PWD=sa;Database=master"
Conn.open ConnStr
conn.execute("CREATE TABLE huangzi_table(id int identity(1,1),biaoid int,biaoname nvarchar(1000))")
conn.execute("insert huangzi_table select [id],[name] from sysobjects where xtype='U'")
set rs =conn.execute("select count(id) as tnum from huangzi_table")
tnum=rs("tnum")
rs.close
set rs=nothing
for i=1 to tnum
set rsbiao =conn.execute("select biaoid from huangzi_table where id="&i&"")
biaoid=rsbiao("biaoid")
set rst =conn.execute("select [biaoname] from huangzi_table where biaoid="&biaoid&"")
tname=rst("biaoname")
set rsl=conn.execute("select count([name]) as lnum from syscolumns where id="&biaoid&"")
lnum=rsl("lnum")
for j=1 to lnum
topnum=j-1
set rslie=conn.execute("select top 1 [name] from syscolumns where id="&biaoid&" and [name] not in
(select top "&topnum&" [name] from syscolumns where id="&biaoid&")")
liename=rslie("name")
set rsresult=conn.execute("select top 1 ["&liename&"] from ["&tname&"] where CAST(["&liename&"] AS NVARCHAR(1000))='"&keyword&"'")
if rsresult.bof or rsresult.eof then
'response.write "Nothing-"&tname&":"&liename
'response.write "<br>"
else
result=rsresult(liename)
response.write result&"("&tname&":"&liename&")"
response.write "<br>"
End if
rslie.close
set rslie=nothing
rsresult.close
set rsresult=nothing
next
rsbiao.close
set rsbiao=nothing
rst.close
set rst=nothing
rsl.close
set rsl=nothing
next
conn.execute("DROP TABLE huangzi_table")
%>


注:效率很差,使用时可能出现假死, 请耐心等待,大库还是别用了;代码简单,实现的简单功能,没技术含量,留着以后备用;换连接语句的时候有个缓存问题,建议重启下浏览器!

标签:关键词,MSSQL,数据库位置
0
投稿

猜你喜欢

  • FrontPage2002简明教程七:HTML在FrontPage中的应用

    2008-09-17 11:33:00
  • 细节设计之美:扩大可操作区域

    2009-08-01 11:32:00
  • 《CSS禅意花园》学习笔记

    2008-10-20 12:43:00
  • JavaScript事件冒泡

    2009-12-28 13:21:00
  • 布局篇(1)—If you love css …

    2008-04-16 14:14:00
  • YUI学习笔记(3)

    2009-01-21 16:24:00
  • 轻松掌握SQL Server数据库的六个实用技巧

    2009-01-15 12:56:00
  • 当视觉设计师遇上产品经理、开发工程师…[译]

    2010-01-17 10:18:00
  • 关于Dreamweaver乱码问题的解决方案

    2010-09-02 12:36:00
  • “你帮我把这个做成这个样子!”—当我听到这句话

    2009-04-16 12:57:00
  • Asp+ajax打造无刷新新闻评论系统

    2008-02-12 15:43:00
  • 使用eval()解析JSON格式字符串应注意的问题

    2008-04-16 15:46:00
  • JavaScript中尽量用局部变量的原因[译]

    2009-02-20 13:45:00
  • 5个有趣的浏览器地址栏Javascript代码

    2008-07-21 13:04:00
  • SQLServer中用T—SQL命令查询一个数据库中有哪些表的sql语句

    2012-07-11 15:28:50
  • 装载iframe 子页面,自适应高度

    2008-11-20 12:53:00
  • asp连接access数据库表代码实例

    2008-04-13 06:18:00
  • 打造通用ASP.NET数据分页控件

    2007-08-18 13:27:00
  • MySQL数据库本地备份和双机相互备份

    2008-05-27 12:25:00
  • 仿QQ和MSN消息提示的效果代码

    2010-03-16 12:17:00
  • asp之家 网络编程 m.aspxhome.com