快乐的小牛joepayne.blog.chinaunix.net
joepayne
坐井以观天
全部博文(108)
mongo(1)
theory(1)
hadoop(2)
python(4)
mysql(5)
R Series(0)
shell(13)
IO(7)
tcp/ip(6)
2014年(13)
2013年(90)
2012年(6)
叶绍琛
五岳之巅
qiushui_
weizhuli
djjsindy
invincib
zhaoping
wenhq
xdsnet
lijunlin
zhanggf8
lurence
mcshiwo
浪花小雨
xeon_fen
tomcodin
我是小小
分类: LINUX
2013-10-12 17:32:46
原文地址:一个利用缓冲区溢出执行代码的例子 作者:platinum
#include <stdio.h>#include <stdlib.h>#include <unistd.h>int main (int argc, char **argv){ int num = 0; char buffer[11] = {0}; printf("num: %d\n", num); num = write(1, "buffer: ", 8); num = read(0, buffer, 10); printf("num: %d\n", num); printf("buffer: %s\n", buffer); return 0;}
上一篇:Git Tips
下一篇:服务器高性能程序 磁盘I/O篇
登录 注册