首页
社区
课程
招聘
[原创]Simple Assembly Explorer (2007.10.15)
发表于: 2007-5-23 12:09 17594

[原创]Simple Assembly Explorer (2007.10.15)

2007-5-23 12:09
17594
收藏
免费 0
支持
分享
最新回复 (35)
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
26
加了壳的需要先脱壳并修复Metadata之类的。
因为Mono Cecil不会支持非法的Assembly。
如果你确信是合法的而又不能打开,可以打包发给我。
主页上有email。
2007-10-18 08:36
0
雪    币: 204
活跃值: (12)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
27
支持LZ,这东西真是方便,最近搞定telerik 2007Q2全套就是用它快速的完成的
2007-10-18 20:15
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
28
很久没更新了,帖子也改不了了啊。

Build 2007.12.16
+ Deobfuscator: Branch option (Released)
+ Disassembler: Support folder operation
+ Assembler: Support folder operation
+ Class Editor: Mark Blocks option

Build 2007.12.03
+ Deobfuscator: Branch option (Preliminary, better than none)
+ Class Editor: Remove now support multiple instructions
+ Support .Net Framework 3.5 SDK (Windows SDK?) now
* ILMerge not included in SAE zip file
2008-1-3 19:42
0
雪    币: 202
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
29
支持一下!谢谢诶!!!
2008-1-3 20:12
0
雪    币: 214
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
30
很好用很强大的工具!!!!
2008-4-29 14:42
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
31
good good study ,Day day up.
2008-7-9 11:52
0
雪    币: 201
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
32
呵呵 支持下。
2008-7-9 23:19
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
35
好久没更新这个帖子了。
SAE的主页已经改到 http://sites.google.com/site/simpledotnet
欢迎大家下载使用并提意见。

最近更新:
Build 2008.08.20
* Change links to google sites

Build 2008.08.04
+ Tools -> Profile ASP.Net: trace functions and parameters of ASP.Net page
+ Deobfuscator: Branch->Loop option and Switch option
+ SimpleProfiler: now can trace object's value
+ Class Editor: edit Switch instruction

Build 2008.07.13
+ Profiler Application: Profile function calls with SImpleProfiler, it's under Tools menu or context menu
+ GUI: drag and drop assembly files or directory
* Cecil updated
2008-9-18 08:44
0
雪    币: 204
活跃值: (12)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
36
good
原来有好几个新版本了啊
小白了
这个东西是我用过最好用的工具了
2008-9-19 09:16
0
雪    币: 222
活跃值: (115)
能力值: ( LV8,RANK:130 )
在线值:
发帖
回帖
粉丝
37
大家注意,这个反混淆有问题的
2008-12-8 08:39
0
雪    币: 222
活跃值: (115)
能力值: ( LV8,RANK:130 )
在线值:
发帖
回帖
粉丝
38
Simple Assembly Explorer反混淆的问题

class A
{
abstract void fun1(string arg1,string arg2);
abstract string fun1(string arg1,string arg2);
}

class B: A
{
override void fun1(string arg1,string arg2);//重载函数 ,与父类a 的 fun1函数名字相同
void fun1(string arg1);
void fun2(int arg1);
override string fun1(string arg1,string arg2); //重载函数 ,与父类a 的 fun1函数名字相同
}

当然了fun1 是那种看不到字符或者字符相当怪的,就是需要处理的函数名

反混淆的时候可能就会出现错误

class A
{
abstract void fun1_m00001(string arg1,string arg2);

abstract string fun1_m000002(string arg1,string arg2);
}

class B: A
{
override void fun_m00001(arg1,arg2);//重载函数
void fun_m00002(string arg1);
void fun_m00003(int arg1);
override string fun_m00004(arg1,arg2);//重载函数
// 混淆后,b中的函数重新 编函数名,导致部分 重载函数 的名字与 父类不一致!!!!!!!
}
2008-12-8 08:50
0
游客
登录 | 注册 方可回帖
返回
//