
反汇编
能哥
内核安全、逆向分析、高性能服务器开发爱好者
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
反汇编系列(二) for
#include"stdio.h"int function(int a,int b){ int c=a+b; int i; for(i=0;i<50;i++) { c=c+i; } return c;}void main(){ function(1,2);} --- c:\u原创 2013-01-09 11:27:49 · 896 阅读 · 0 评论 -
反汇编系列(三) dowhile
#include"stdio.h"int function(int a,int b){ int c=a+b; int i=0; do { c=c+i; }while(i<50); return c;}void main(){ function(1,2);}原创 2013-01-09 19:33:48 · 799 阅读 · 0 评论 -
反汇编系列(四) while
#include"stdio.h"int function(int a,int b){ int c=a+b; int i=0; while(i<50) { c=c+i; } return c;}void main(){ function(1,2);} --- c:\u原创 2013-01-09 19:34:36 · 991 阅读 · 0 评论 -
反汇编系列(五) ifelse
#include"stdio.h"int function(int a,int b){ int c=a+b; if(c>0&&c<10) { printf("c>0"); } else if(c>10&&c<100) { printf("c>10&&c<100"); }原创 2013-01-09 19:37:31 · 1079 阅读 · 0 评论 -
反汇编系列(六) switchcase
#include"stdio.h"int function(int a,int b){ int c=a+b; switch(c) { case 0: printf("c>0"); case 1: printf("c>10&&c<100");原创 2013-01-09 19:38:19 · 1134 阅读 · 0 评论 -
反汇编系列(七) struct
typedefstruct{ int a; int b; int c;}mystruct;int function(int a,int b){ unsigned char *buffer[100]; mystruct *strs=(mystruct*)buffer; int i; for(i=0;i;哈,没有优化的代码有的地方是很可笑的! --- c:\users\wangchao原创 2013-01-09 19:39:13 · 1095 阅读 · 0 评论 -
反汇编系列(八) union
#include"stdio.h"typedefenum{ ENUM_1=1, ENUM_2=2, ENUM_3, ENUM_4}myenum;typedefstruct{ int a; int b; int c;}mystruct;typedefunion{ mystruct s;原创 2013-01-09 19:41:16 · 1107 阅读 · 0 评论 -
反汇编系列(九) 算法反汇编
#include"stdio.h"int function(int a[3][3],int b[3][3],int c[3][3]){ int i,j; for(i=0;i<3;i++) { for(j=0;i<3;j++) { c[i][j]=a[i][0]*b[0][j]+a[i][1]*b[1原创 2013-01-09 19:42:38 · 1301 阅读 · 0 评论 -
反汇编系列(一) 基本函数调用
#include"stdio.h"int function(int a,int b){ int c=a+b; return c;}void main(){ function(1,2); getchar();} --- c:\users\wangchao\desktop\test\test\main.cp原创 2013-01-09 11:24:34 · 1567 阅读 · 0 评论