首页
社区
课程
招聘
[分享]Crash course in code obfuscation by example
发表于: 2010-11-27 11:19 3981

[分享]Crash course in code obfuscation by example

2010-11-27 11:19
3981
Obfuscation

The following material is a crash course in code obfuscation by example.

First, let's look at some reasons why someone might want to obfuscate code:

    * Help maintain trade secrets in compiled code (harder to reverse engineer)
    * Increase code efficiency (which by nature creates code harder to read by humans...
      not really obfuscation)
    * Source code compression (Search for the 12 days of Christmas obfuscated code)
    * Job security, since only you know what the code is. (Warning:Obfuscating your code
      at work for this reason is one sure way NOT to get other assignments, or to be assured an
      quick ticket home and let go for bad coding practices. I do NOT recommend this reason for
      obfuscating code)
    * Obfuscation is fun to say and do!

All programmers are hopefully familiar with typical "Hello World" programs. Let's begin our code obfuscation
example with the following simple "Hello World" program written in C.

URL

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

上传的附件:
收藏
免费 0
支持
分享
最新回复 (0)
游客
登录 | 注册 方可回帖
返回
//