免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1654 | 回复: 4
打印 上一主题 下一主题

笔试题,大家看看 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-11-24 10:46 |只看该作者 |倒序浏览
Consider the following code:

#include <stdio.h>
#include <string.h>
int main(int argc, char *argv[]) {
int i = 1;
char buf[4];
strcpy(buf, "AAAA");
printf("%dn", i);
return 0;
}

a) When compiled and executed on x86, why does this program usually not
output what the programmer intended?

b) Name several ways in which the security problem that causes this
program not to output what the programmer intended can be prevented
WITHOUT changing the code.

论坛徽章:
0
2 [报告]
发表于 2005-11-24 11:11 |只看该作者
运行结果是:0
但如果strcpy(buf, "AAA") // 3个A
结果是1
为什么?

论坛徽章:
0
3 [报告]
发表于 2005-11-24 11:16 |只看该作者
看一下i的地址&i是多少,然后再看看buf的地址是多少!
看看是不是因为strcpy函数执行时,把最后一个字节写成了'\0',而这个字节的地址恰好是i低位的地址.
这里没有调试环境,我说的纯属猜测!

论坛徽章:
0
4 [报告]
发表于 2005-11-24 11:38 |只看该作者
同意楼上的
扬子江 该用户已被删除
5 [报告]
发表于 2005-11-24 12:19 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP