摘要: 在win7下,通过下面的方法测试shellcode:char shellcode [] ="..." ;int main ( int argc , char ** argv){ __asm { lea eax , shellcode call eax } return 0;}必须要也可以通过设置数据段为可执行来测试shellcode,不然shellcode所在的数据段由于受系统保护不允许被执行,导致出现异常,而测试失败。代码如下:#pragma comment(linker, "/section:.... 阅读全文
posted @ 2013-03-01 12:15 赤脚的懒虫 阅读(970) 评论(0) 推荐(0) 编辑