能力值:
( LV2,RANK:10 )
|
-
-
26 楼
楼上大哥,你好,没找到maxtocode脱壳机啊
|
能力值:
( LV2,RANK:10 )
|
-
-
27 楼
我也逆向成功了,随便贴上个逆向的代码
private void BtnLogin_Click(object sender, EventArgs e)
{
this.BtnLogin.Enabled = false;
Dictionary<string, string> dictionary = new Client().Login(this.TxtUserName.Text, this.TxtPassWord.Text);
if (dictionary == null)
{
MessageBox.Show("数据传输错误,请检查网络设置!", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Hand);
this.BtnLogin.Enabled = true;
}
else if (dictionary["result"] == "true")
{
SysConstants.UserName = this.TxtUserName.Text;
SysConstants.Password = StringUtils.MD5(this.TxtPassWord.Text);
SysConstants.EnableStat = dictionary["msg"] == "true";
string path = Application.StartupPath + @"\user.xml";
if (File.Exists(path))
{
File.Delete(path);
}
XmlTextWriter writer = new XmlTextWriter(path, Encoding.GetEncoding("GBK")) {
Formatting = Formatting.Indented,
Indentation = 4
};
writer.WriteStartDocument();
writer.WriteStartElement("user");
writer.WriteStartElement("username");
if (this.CheckRememberUser.Checked)
{
writer.WriteString(this.TxtUserName.Text);
}
else
{
writer.WriteString("");
}
writer.WriteEndElement();
writer.WriteStartElement("password");
if (this.CheckRememberPass.Checked)
{
writer.WriteString(this.TxtPassWord.Text);
}
else
{
writer.WriteString("");
}
writer.WriteEndElement();
writer.WriteEndElement();
writer.WriteEndDocument();
writer.Flush();
writer.Close();
this.Quit();
}
else
{
MessageBox.Show(dictionary["msg"], "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Hand);
this.BtnLogin.Enabled = true;
}
}
|
能力值:
( LV2,RANK:10 )
|
-
-
28 楼
学习,慢慢研究会懂的
|
能力值:
( LV2,RANK:10 )
|
-
-
29 楼
这么多人会啊谁能具体说说啊
|
能力值:
( LV4,RANK:50 )
|
-
-
30 楼
搜索dng maxtocode 脱壳机就可以找到下载了,本论坛8月的一个回贴中也有人上传附件
|
能力值:
( LV2,RANK:10 )
|
-
-
31 楼
哎,脱壳机报错!脱不了?
|
能力值:
( LV4,RANK:50 )
|
-
-
32 楼
我前面回帖的时候就已经试过了,是可以正常脱壳的,呵呵
|
能力值:
( LV2,RANK:10 )
|
-
-
33 楼
是这个脱壳机吗?该选哪一项啊?每项我都试过了,用Reflector载入还是提示:#GUID heap has invalid size!不知如何办啊?另外该是脱exe文件还是dll文件啊
|
能力值:
( LV4,RANK:50 )
|
-
-
34 楼
是这个啊
我当时就试了exe
选项是maxtocode,点击jit dump
|
能力值:
( LV2,RANK:10 )
|
-
-
35 楼
脱壳时出错啊!图片如下:
|
能力值:
( LV4,RANK:50 )
|
-
-
36 楼
不是提示你找不到System.Data.SQLite了么?
你是不是破解的目录只放了一个exe啊?exe引用的dll少了
|
能力值:
( LV2,RANK:10 )
|
-
-
37 楼
哎 还是下个最新的。net reflector吧
|
能力值:
( LV2,RANK:10 )
|
-
-
38 楼
我还是帮楼主顶一下吧
呵呵
|
能力值:
( LV2,RANK:10 )
|
-
-
39 楼
[QUOTE=luodf;1034287]脱壳时出错啊!图片如下:
[/QUOTE]
没缺少文件啊!能把你的脱壳机用下吗?
|
能力值:
( LV2,RANK:10 )
|
-
-
40 楼
还没搞定吗?真晕,留个联系方式我给你破解了。
|
能力值:
( LV2,RANK:10 )
|
-
-
41 楼
留了QQ大牛
|
能力值:
( LV4,RANK:50 )
|
-
-
42 楼
提示很明确
你缺少文件了
http://bbs.pediy.com/attachment.php?attachmentid=63284&d=1324539044
缺少的就是你自己主帖截图中最后一行的第二个dll文件
|
能力值:
( LV2,RANK:10 )
|
-
-
43 楼
提示不错啊!那文件明明在啊!真是怪,到底什么原因啊?
|
能力值:
( LV2,RANK:10 )
|
-
-
44 楼
几个牛哥是怎么逆向得到代码的?????
|
能力值:
( LV2,RANK:10 )
|
-
-
45 楼
我看看是什么呢
|
能力值:
( LV2,RANK:10 )
|
-
-
46 楼
脱壳后可以看到代码了,但有两个问题:1.脱壳后运行不了。2.可以看见源码,用什么工具修改呢?请高手指点。截图如下,不能沉了牛人们!
|
能力值:
( LV3,RANK:30 )
|
-
-
47 楼
汗 大牛发些.net破解教程吧. 尤其是那个maxtocode滴.. 谢谢了
|
能力值:
( LV2,RANK:10 )
|
-
-
48 楼
[QUOTE=luodf;1035206]脱壳后可以看到代码了,但有两个问题:1.脱壳后运行不了。2.可以看见源码,用什么工具修改呢?请高手指点。截图如下,不能沉了牛人们!
[/QUOTE]
脱壳后无法运行,望大牛们不要保留,指导下啊!
|
能力值:
( LV2,RANK:10 )
|
-
-
49 楼
脱壳后可以看见原代码,为什么不能运行啊?
|
能力值:
( LV2,RANK:10 )
|
-
-
50 楼
壳脱了,不能运行啊!你那里能运行吗?
|
|
|