
213Lab
文章平均质量分 61
pessis1
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
213 lab2 bomb
第二个实验 反编译得到汇编码 主要有6个phase和一个隐藏phase 0000000000400ee0 : 400ee0: 48 83 ec 08 sub $0x8,%rsp 400ee4: be 00 24 40 00 mov $0x402400,%esi//将地址0x402400的内容放在esi寄存器中 400ee9: e8 4a 04 00 00 callq 401338 //判断输入原创 2016-10-14 16:44:30 · 2902 阅读 · 1 评论 -
213 lab1 datalab
Lab1第一次做213的lab 呕出一口老血 下面的代码都是运行通过的/*原创 2016-09-21 12:31:29 · 1359 阅读 · 0 评论 -
213 lab 3 attacklab
第三个实验主要是考察code injection 和ROP攻击 的内容 参考了这两篇文章 CSAPP 3e Attack lab 【读厚 CSAPP】III Attack Lab http://csapp.cs.cmu.edu/3e/attacklab.pdf 这个是课程的任务书 感觉还是要仔细看啊 哭 下载了target1包之后里面的文件如下 cookie原创 2016-10-28 16:45:20 · 7542 阅读 · 0 评论 -
213 lab 4 cachelab
这个lab让我深刻地体会到了自己还是一个菜鸟。。。。 lab分为AB两个部分。 先说Apart。要写一个C语言程序模拟cache的工作情况。 #include"cachelab.h" #include #include #include #include #include #define MAX 100 int misses,evictions,hits; int s,E,b原创 2016-11-01 10:02:47 · 8986 阅读 · 0 评论 -
Leetcode 89 Gray Code
The gray code is a binary numeral system where two successive values differ in only one bit. Given a non-negative integer n representing the total number of bits in the code, print the sequence of原创 2017-07-03 10:49:55 · 259 阅读 · 0 评论