热搜词
发表于 2010-12-7 12:59:09 | 显示全部楼层 |阅读模式
网站打包成.mdb格式的网站 解压方法?(解压工具)
有很多网友,入侵别人的网站,然后将别人的站点打包成mdb的文件格式!别人的整站会形成一个**.MDB的文件格式,这样子就可以将整个网站下载下来!
也有很多朋友拿到这个**.mdb的文件后,不知道怎么用,这不是一种数据文件,也不能用WINrar来解压缩,因为他是一种木马打包的形式!
解压这种压缩包,你可以在网上找海洋打包工具进行解压缩!但我这里向大家介绍的方法更简单!

将**.MDB的文件放在本地的某个文件夹,把下面代码写进记事本,保存为.vbs文件,把待解压文件改名为Packet.mdb后执行解压
为什么要改成packet.mdb请大家注意红色部分!

Dim rs, ws, fso, conn, stream, connStr, theFolder
Set rs = CreateObject("ADODB.RecordSet")
Set stream = CreateObject("ADODB.Stream")
Set conn = CreateObject("ADODB.Connection")
Set fso = CreateObject("Scripting.FileSystemObject")
connStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=packet.mdb;"

conn.Open connStr
rs.Open "FileData", conn, 1, 1
stream.Open
stream.Type = 1

On Error Resume Next

Do Until rs.Eof
theFolder = Left(rs("thePath"), InStrRev(rs("thePath"), "\"))
If fso.FolderExists(theFolder) = False Then
createFolder(theFolder)
End If
stream.SetEos()
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

Wscript.Echo "所有文件释放完毕!"

Sub createFolder(thePath)
Dim i
i = Instr(thePath, "\")
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

使用这段代码的兄弟,记得开上杀毒软件哦,因为这类型是用木马进行压缩的!所以注意自己清理一下存在的木马!
全部评论0
回复
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|手机版|小黑屋|管理员之家 ( 苏ICP备2023053177号-2 )

GMT+8, 2024-11-23 05:43 , Processed in 0.146809 second(s), 22 queries .

Powered by Discuz! X3.5

Cpoyright © 2001-2024 Discuz! Team