惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
J
Java Code Geeks
雷峰网
雷峰网
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
V
Vulnerabilities – Threatpost
S
Securelist
The Hacker News
The Hacker News
The Register - Security
The Register - Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Help Net Security
Help Net Security
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
M
MIT News - Artificial intelligence
AI
AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Schneier on Security
Schneier on Security
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
Google DeepMind News
Google DeepMind News
Hacker News - Newest:
Hacker News - Newest: "LLM"
H
Hacker News: Front Page
博客园 - 司徒正美
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
B
Blog
Microsoft Azure Blog
Microsoft Azure Blog
大猫的无限游戏
大猫的无限游戏
Security Latest
Security Latest
Engineering at Meta
Engineering at Meta
N
News and Events Feed by Topic
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
酷 壳 – CoolShell
酷 壳 – CoolShell
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Threat Research - Cisco Blogs
U
Unit 42
V
V2EX
V2EX - 技术
V2EX - 技术
L
LINUX DO - 最新话题
aimingoo的专栏
aimingoo的专栏
Microsoft Security Blog
Microsoft Security Blog
Recorded Future
Recorded Future
P
Privacy & Cybersecurity Law Blog
美团技术团队
小众软件
小众软件
F
Fortinet All Blogs

博客园 - Brendan

[转载]Manually configuring Microsoft Internet Information Services (IIS) IIS与TOMCAT协同工作---在IIS下运行JSP页面 AXIS部署错误解决方案集锦 使用System.Web.Mail发送Mail的错误解决方案 类的XML序列化(XML Serialization) [翻译]你可以赚钱,但你不能赚时间 Windows 2003 Server配置IIS服务器(ASP, ASP.NET)全功略 Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive 用MS SQL Server事件探查器来跟踪数据库的操作 C中获取当前时间的函数 Buffered I/O 与 Non-Buffered I/O性能差异的实例体验 替换函数(Substitution Function) 主定理(Master Theorem) Dynamic Programming之Longest Increasing Subsequence (LIS)问题 ADO.NET数据库连接模块 ASP.NET控件事件丢失的探究 SQLDMO For C#(翻译) 关联(Association)设计中的扇形陷阱(Fan Traps)和断层陷阱(Chasm Traps) 简单并发控制
反反编译工具——Deploy.NET
Brendan · 2006-04-23 · via 博客园 - Brendan

        我曾经在这里的一篇文章中介绍过一套剧牛无比的.NET反编译软件——Decompiler.NET。它可以非常轻松的把整个.NET的DLL和EXE文件的源代码给反编译出来。这套软件无疑是对众多.NET开发者的代码保护给予了沉重打击。

        不过说来也真是很有意思,这套反编译软件的发明者:Jungle Creatures, INC在推出了Decompiler.NET之后,又立即推出了Deploy.NET——一套反反编译软件。这套软件目前只能对.NET编译出的EXE文件进行保护。它使用的方法是把原有的binary进行重新组织和混淆,生成一个新的binary。如果对这个新的binary进行反编译,基本上是成功不了的。

        下面我就来介绍这套软件。

        由于它功能比较简单,所以它的界面也就随之简洁明了:

通过"Browse"按钮,你可以把进行反编译保护的.NET EXE文件选好,然后按"Protect"按钮即可。这里要注意该软件保护的只有.NET EXE,其它文件如果进行保护处理,可能使它不能正常运行。点击"Launch"试一下,保护处理之后的软件是否能正常运行。

        关于保护之后的效果,建议你用Decomplier.NET进行反编译试试。反编译的结果会是一团糟,各种无关的信息的出现使你根本不知道真正的源代码是什么。由于篇幅关系,不在这里再做演示。
        
        唯一比较可惜的地方就是目前这套软件还不能对.NET DLL进行保护。所以对ASP.NET开发者来说,恶梦并没有结束...