摘要: https://www.cnblogs.com/LJFedu/p/15490753.html 阅读全文
posted @ 2021-10-31 22:40 191206 阅读(25) 评论(0) 推荐(0) 编辑
摘要: ##知识点归纳 ##问题和解决思路 ####pthread_cancel()不能杀死线程 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <unistd.h> 4 #include <pthread.h> 5 #include <strin 阅读全文
posted @ 2021-10-31 22:36 191206 阅读(46) 评论(0) 推荐(0) 编辑
摘要: ##树莓派安装openEuler 博客链接 ##树莓派安装openssl 娄老师博客 修改环境变量 在/etc/profile中加入 export PATH="/root/dopenssl/bin/:$PATH" export LD_LIBRARY_PATH="/root/dopenssl/lib: 阅读全文
posted @ 2021-10-31 22:35 191206 阅读(93) 评论(0) 推荐(0) 编辑
摘要: ##思路 一个简单的缓冲区溢出攻击,差不多就这几歩: 找到堆栈中函数的返回地址 利用缓冲区溢出,修改堆栈中函数的返回地址为我们期望的shellcode地址 编写shellcode,并将它放在修改后的函数返回地址处 通常我们可以使用jump esp作为跳板,简化shellcode存放地址。 即,将函数 阅读全文
posted @ 2021-10-31 22:34 191206 阅读(396) 评论(0) 推荐(0) 编辑
摘要: T1.c 1 #include <stdio.h> 2 int g = 1203; 3 int h; 4 static int s; 5 6 int main(int argc,char *argv[]){ 7 int a = 1,b; 8 static int c = 3; 9 b = 2; 10 阅读全文
posted @ 2021-10-31 22:33 191206 阅读(54) 评论(0) 推荐(0) 编辑