#include<stdio.h> #include<stdlib.h> #include<unistd.h> #include<sys/mman.h> /* int mprotect(const void *start, size_t len, int prot); 第一个参数:开始地址(该地址应是0x1000的倍数,以页方式对齐) 第二个参数:指定长度(长度也应该是0x1000的倍数) 第三个参数:指定属性 PROT_NONE:The memory cannot be accessed at all.完全无法访问内存。 PROT_READ:The memory can be read.可以读取内存。 PROT_WRITE:The memory can be modified.内存可以修改。 PROT_EXEC:The memory can be executed.内存可以执行。 可读可写可执行(0x111=7)W oj->level5 */
#include<stdio.h> #include<stdlib.h> #include<unistd.h> #include<sys/mman.h> #include<string.h> /* int mprotect(const void *start, size_t len, int prot); 第一个参数:开始地址(该地址应是0x1000的倍数,以页方式对齐) 第二个参数:指定长度(长度也应该是0x1000的倍数) 第三个参数:指定属性 PROT_NONE:The memory cannot be accessed at all.完全无法访问内存。 PROT_READ:The memory can be read.可以读取内存。 PROT_WRITE:The memory can be modified.内存可以修改。 PROT_EXEC:The memory can be executed.内存可以执行。 可读可写可执行(0x111=7)W */ char buf2[0x100];