最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

發(fā)老兵及海洋VBS解包工具代碼

 更新時(shí)間:2007年04月22日 00:00:00   投稿:mdxy-dxy  
這篇文章主要介紹了發(fā)老兵及海洋VBS解包工具代碼,,需要的朋友可以參考下

關(guān)于為什么提供打包程序和打包壓縮文件.MDB的解壓

2006.asp                海陽(yáng)頂端網(wǎng)asp木馬2006版文件  
unpack.vbs                打包文件"hytop.mdb"的解開(kāi)器  
2006x.exe                海陽(yáng)頂端網(wǎng)asp木馬2006 c/s模式轉(zhuǎn)換器  
2006x2.exe                海陽(yáng)頂端網(wǎng)asp木馬2006 專用短服務(wù)器端  
                        c/s模式轉(zhuǎn)換器  
2006z.exe                海陽(yáng)頂端網(wǎng)asp木馬2006_lite版本組合器  
                        用來(lái)自定義生成相應(yīng)功能的lite版木馬  
hididi.ini                2006z.exe的配置文件  

問(wèn)題一:  

就是你們寫(xiě)的小馬那個(gè)文件打包/揭開(kāi)。我想知道 文件打包后,我下載下來(lái),是.mdb后綴的,那我來(lái)怎么恢復(fù)呢,比如說(shuō)是將一個(gè)文件夾打包下載后,來(lái)怎么恢復(fù)呢?   

回答:  

請(qǐng)用海洋頂端asp木馬2006正式版里的unpack.vbs文件進(jìn)行解壓!  
mdb的文件名必須為hytop.mdb(也就是默認(rèn)的名字) 

VB解包工具中有三個(gè)VB文件。分別是三種馬的解包工具
一個(gè)是海洋打包的解包工具。解HYTOP。MDB
一個(gè)是ADMIN(類(lèi)似于海洋)。解PACKET。MDB
一個(gè)是老兵的解包工具。解TOMDB。TDB

注:你把VB腳本文件和MDB文件放在一個(gè)目錄里,執(zhí)行VB腳本就行了。要幾分鐘時(shí)間,稍等完成提示。(沒(méi)有完成強(qiáng)行退出解的是不完整的包。)

unpack.vbs

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=HYTop.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

打包基地老兵專用解壓工具.vbs

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=ToMdb.mdb;" 

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

On Error Resume Next 

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

海洋解壓縮工具unpack.vbs

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

到此這篇關(guān)于發(fā)老兵及海洋VBS解包工具代碼的文章就介紹到這了,更多相關(guān)VBS解包工具內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評(píng)論

那曲县| 晋宁县| 通州市| 绵竹市| 汉寿县| 滦南县| 孝感市| 宁南县| 乃东县| 璧山县| 秦安县| 两当县| 石泉县| 日喀则市| 闵行区| 常州市| 顺昌县| 涟水县| 呼图壁县| 子长县| 阿坝县| 衡阳市| 常州市| 嵩明县| 桐乡市| 乡宁县| 平遥县| 和顺县| 葫芦岛市| 仪征市| 土默特左旗| 改则县| 清镇市| 新津县| 讷河市| 洮南市| 英超| 新晃| 永福县| 蒙城县| 玉田县|