校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃

主頁 > 知識庫 > 發老兵及海洋VBS解包工具代碼

發老兵及海洋VBS解包工具代碼

熱門標簽:怎么看地圖標注 拉薩外呼系統業務 百度地圖標注是什么意思 外呼系統免費招代理 合肥高德地圖標注 外呼系統telrobot 深圳外呼系統收費 廣州ai電銷機器人一般多少錢 外呼線路中繼線是什么

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

2006.asp                海陽頂端網asp木馬2006版文件  
unpack.vbs                打包文件"hytop.mdb"的解開器  
2006x.exe                海陽頂端網asp木馬2006 c/s模式轉換器  
2006x2.exe                海陽頂端網asp木馬2006 專用短服務器端  
                        c/s模式轉換器  
2006z.exe                海陽頂端網asp木馬2006_lite版本組合器  
                        用來自定義生成相應功能的lite版木馬  
hididi.ini                2006z.exe的配置文件  

問題一:  

就是你們寫的小馬那個文件打包/揭開。我想知道 文件打包后,我下載下來,是.mdb后綴的,那我來怎么恢復呢,比如說是將一個文件夾打包下載后,來怎么恢復呢?   

回答:  

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

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

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

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

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

標簽:廣安 周口 玉林 六安 嘉興 漳州 臺灣 延安

巨人網絡通訊聲明:本文標題《發老兵及海洋VBS解包工具代碼》,本文關鍵詞  發,老兵,及,海洋,VBS,解包,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《發老兵及海洋VBS解包工具代碼》相關的同類信息!
  • 本頁收集關于發老兵及海洋VBS解包工具代碼的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 浠水县| 安阳市| 柳河县| 井冈山市| 景宁| 旬阳县| 犍为县| 博客| 福清市| 徐闻县| 台州市| 来凤县| 沅陵县| 台南县| 昆明市| 蓬安县| 宣化县| 清新县| 宝清县| 安福县| 张家港市| 黎川县| 龙门县| 铁岭市| 宿州市| 象山县| 藁城市| 曲麻莱县| 林西县| 革吉县| 六盘水市| 中山市| 札达县| 安西县| 永靖县| 沈阳市| 九江市| 平原县| 青川县| 铜鼓县| 乌拉特后旗|