首页 > 其他 > 详细

bug hunting

时间:2014-02-23 00:59:25      阅读:432      评论:0      收藏:0      [点我收藏+]

1. What is bug hunting? -- the process of finding bugs in software/hardware. security related bugs are called security vulnerablities, the programs that take advantage of them are called exploits.

2. Why hunting security bugs? -- Mostly for profits.

3. Techniques: static analysis and dynamic analysis

static analysis -- examining source code or disassembly of a binary but don‘t execute it.

dynamic analysis -- debugging the code while it is executing

入手点: Identify where user-influenced input enter into the software

          Find potential vulnerable code locations (such as strcpy, strcat) and trace backward

          Fuzzing

4. Goal: gain control of program counter (EIP), when you achieve control over EIP, you controls the execution of the software, and there are many ways to turn it into a fully working, weaponized exploits.

bug hunting

原文:http://www.cnblogs.com/littledot/p/3560947.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!