首页
社区
课程
招聘
[旧帖] txt加密的文件,请解密 0.00雪花
发表于: 2011-5-12 10:52 38893

[旧帖] txt加密的文件,请解密 0.00雪花

2011-5-12 10:52
38893
收藏
免费 0
支持
分享
最新回复 (88)
雪    币: 31
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
76
我这边也有个被加密的代码  好复杂
2011-9-18 10:57
0
雪    币: 0
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
77
不是吧?可以运行、、?那你说的我还没有实验呢。
2011-9-18 20:33
0
雪    币: 27
活跃值: (221)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
78
在文件头溜达溜达 看看是否 文件类型不对
如果自己写得加密算法加密的楼主就算了吧
在网上有在线的站长工具试试
2011-9-18 23:11
0
雪    币: 30
活跃值: (11)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
79
txt也有加密的。。。
2011-9-18 23:35
0
雪    币: 205
活跃值: (15)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
80
看不懂  太那个了
2011-9-19 08:44
0
雪    币: 37
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
81
记事本就可以打开的
2011-9-20 11:22
0
雪    币: 213
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
82
这应该是在传奇的登陆网关目录下的东东吧,但是登陆网关下有此文件应该是不正常的 应该是登陆网关程序释放出来的某种验证程序是否为VIP版的吧
2011-9-20 11:25
0
雪    币: 12
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
83
key=inputbox("请设置该文件的打开密码:","系统提示","0")
key=ChgStr(key,2)
filename=wscript.arguments(0)
set fso=createobject("scripting.filesystemobject")
set ws=createobject("wscript.shell")
ext=fso.getExtensionName(filename)

with createobject("adodb.stream")
.type=1:.open:.loadfromfile filename:str=.read:sl=lenb(str)
end with
with createobject("scripting.filesystemobject").opentextfile(replace(filename,ext,"vbs"),2,true)
.write "data="""
for i=1 to sl
bt=ascb(midb(str,i,1))
if bt<16 then .write "0"
.write hex(bt)
next
.write""""
.writeline empty
.writeline"thisfilecode="&""""&""&key&""&""""&""
.writeline"thiscode=ChgStr(thisfilecode,1)"
.writeline"key=inputbox("&""""&"请输入您的密码:"&""""&")"
.writeline"if key<>thiscode then"
.writeline"msgbox"&""""&"密码错误!"&""""&",4096+64,"&""""&"系统提示"&""""&""
.writeline"wscript.quit"
.writeline"end if"
.writeline"Function ChgStr(str,flag)"
.writeline"s1="&""""&"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"&""""&""
.writeline"s2="&""""&"SGk7B4arX8UFecwJ9O6y2ihWMNKDp1ZE0gsmlTAQ5HYLjVIzqfuobvCxtPR3nd"&""""&""
.writeline"If Not flag=1 Then t=s1:s1=s2:s2=t"
.writeline"For i=1 To Len(str)"
.writeline"before=Mid(str,i,1)"
.writeline"For j=1 To 62 "
.writeline"after=Replace(before,Mid(s1,j,1),Mid(s2,j,1))"
.writeline"If Not before=after Then ChgStr=ChgStr&after:Exit For"
.writeline"Next"
.writeline"Next"
.writeline"End Function "
.writeline"Function ExtractFile(FileName)"
.writeline"With CreateObject("&""""&"ADODB.Stream"&""""&")"
.writeline".Type = 1"
.writeline".Open"
.writeline".Write StrToByte(data)"
.writeline".SaveToFile FileName, 2"
.writeline".Close:End With"
.writeline"End Function "
.writeline"ExtractFile "&""""&"c:\windows\preview."&ext&""&""""&""
.writeline"set fso=CreateObject("&""""&"Scripting.filesystemobject"&""""&")"
.writeline"return=CreateObject("&""""&"WScript.Shell"&""""&").Run("&""""&"c:\windows\preview."&ext&""&""""&",,true)"
.writeline"if return<>2 then:fso.deletefile"&""""&"c:\windows\preview."&ext&""&""""&":end if"
.writeline"Function StrToByte(str)"
.writeline"Set xmldoc = CreateObject("&""""&"Microsoft.XMLDOM"&""""&")"
.writeline"xmldoc.loadXML "&""""&"<?xml version="&""""&""&""""&"1.0"&""""&""&""""&"?>"&""""&" "
.writeline"Set pic = xmldoc.createElement("&""""&"pic"&""""&")"
.writeline"pic.dataType = "&""""&"bin.hex"&""""&""
.writeline"pic.nodeTypedValue = str"
.writeline"StrToByte = pic.nodeTypedValue"
.writeline"End Function "
end with
ws.popup"转换成功!",3,"制作 BY:飘零",64+4096
set ws=nothing

Function ChgStr(str,flag)
s1="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
s2="SGk7B4arX8UFecwJ9O6y2ihWMNKDp1ZE0gsmlTAQ5HYLjVIzqfuobvCxtPR3nd"
If Not flag=1 Then t=s1:s1=s2:s2=t
For i=1 To Len(str)
before=Mid(str,i,1)
For j=1 To 62
after=Replace(before,Mid(s1,j,1),Mid(s2,j,1))
If Not before=after Then ChgStr=ChgStr&after:Exit For
Next
Next
End Function

保存为*.vbs
2011-9-20 19:40
0
雪    币: 15
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
84
这个能不能说的详细些啊
2011-9-21 09:35
0
雪    币: 77
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
85
天龙八部的服务器列表,知道列表可以在开区时提前进去,新区是先开的,但不能下载列表就没法进去,加密就是为了这个,不然一开区,进去一看,30多级的满天飞,可能还有50多级的一两只。
2011-9-22 00:37
0
雪    币: 1
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
86
这是什么东东?游戏服务器列表?
2011-9-22 08:44
0
雪    币: 62
活跃值: (25)
能力值: ( LV3,RANK:20 )
在线值:
发帖
回帖
粉丝
87
看看回复 就学习了不少。。。。。。。。。
2011-12-28 00:59
0
雪    币: 201
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
88
学习下,希望能学点东西。。
2011-12-28 15:10
0
雪    币: 36
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
89
我就是看看回复
2011-12-28 15:16
0
游客
登录 | 注册 方可回帖
返回
//