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

推荐订阅源

S
SegmentFault 最新的问题
Spread Privacy
Spread Privacy
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
SecWiki News
SecWiki News
腾讯CDC
P
Privacy International News Feed
Webroot Blog
Webroot Blog
J
Java Code Geeks
爱范儿
爱范儿
A
About on SuperTechFans
S
Secure Thoughts
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
D
DataBreaches.Net
Cloudbric
Cloudbric
Security Archives - TechRepublic
Security Archives - TechRepublic
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
C
Cyber Attacks, Cyber Crime and Cyber Security
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Security Latest
Security Latest
Forbes - Security
Forbes - Security
小众软件
小众软件
www.infosecurity-magazine.com
www.infosecurity-magazine.com
C
Cybersecurity and Infrastructure Security Agency CISA
T
Threatpost
量子位
MongoDB | Blog
MongoDB | Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
W
WeLiveSecurity
P
Privacy & Cybersecurity Law Blog
Vercel News
Vercel News
Google Online Security Blog
Google Online Security Blog
云风的 BLOG
云风的 BLOG
GbyAI
GbyAI
S
Security @ Cisco Blogs
T
The Exploit Database - CXSecurity.com
Help Net Security
Help Net Security
V
Visual Studio Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
Application and Cybersecurity Blog
Application and Cybersecurity Blog
博客园 - 聂微东
P
Proofpoint News Feed
C
CERT Recently Published Vulnerability Notes
Attack and Defense Labs
Attack and Defense Labs

博客园 - 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开发者来说,恶梦并没有结束...