-
https://heeler-deer.github.io/2021/10/14/CSAPP/
-
tiny.c:229:5: 警告:‘sprintf’ argument 3 overlaps destination object ‘body’ [-Wrestrict]
tiny.c:222:24: 附注:destination object referenced by ‘restrict’-qualified argument 1 was declared here
222 | …
-
docker run --privileged --it ... csapp
gdb bomb, and run, then:
```
warning: Could not trace the inferior process.
warning: ptrace: Function not implemented
During startup program exited with cod…
BDXGD updated
1 month ago
-
```Makefile
CC = gcc
CFLAGS = -g -Wall
LDFLAGS = -lpthread
csapp.o: csapp.c csapp.h
$(CC) $(CFLAGS) -c csapp.c
echoclient.o: echoclient.c
$(CC) $(CFLAGS) -c echoclient.c
echoserveri.o:…
-
### Describe the bug
I'm trying to package `xaml templated control` into nuget package and then consume it in `C#/WinUI 3` packaged app.
In `UWP` this was working, but in `WinUI 3` it seems to be …
-
http://sxrekord.com/csapp-data-lab/
bitXor题目要求仅使用~和&实现异或功能。不难发现 (~x & y) 和 (x & ~y)对相同位的针对意味都十分明显,因为只要对应位相同,上面两个式子结果必定为0。从而题目得解。 123456789101112//1/* * bitXor - x^y using only ~ and & * Example: …
-
1.熟悉了gdb命令行的使用,之前基本都是用的gui来操作
2.熟悉了linux下一些关于二进制和汇编的tool,譬如objdump、readelf
3.熟悉了AT&T格式的汇编,各种操作符,x86-64下的寄存器使用规范,各种控制结构的汇编形式实现
PS:19年的408一道大题就是类似这个lab的形式
-
https://mitmoksha.github.io/2022/05/18/CSAPP-Ch1/#more
计算机系统总是如此的吸引人
-
# CSAPP-1 计算机系统漫游 - vinkle's space
简单介绍了计算机系统的组成,存储层次结构,操作系统内核及其抽象的知识。
[https://vinkle.top/2020/07/06/CSAPP_1/](https://vinkle.top/2020/07/06/CSAPP_1/)
-
https://asterich.top/2022/12/16/CSAPP-Attack-Lab/#more
这个 lab 对应的是 CSAPP 中的 3.10 节,主要是缓冲区攻击,需要对栈帧结构、gdb 有一定了解。现在开搞!