PWN题解
GitCloud
这个作者很懒,什么都没留下…
展开
-
究极pwntools环境配置,ubuntu下anaconda管理python
前述 最近因为一次“手抖”,把ubuntu的用户分组搞乱了,索性就删除了该虚拟机,准备着手配置一下,一个新的环境。 吸取以前的经验,在ubuntu下同时安装python2和python3感觉会很乱,有时候还有导入包的冲突,就是一味的头疼,特此用anaconda来管理python环境,舒服多了。 Anaconda安装 https://www.anaconda.com/download/在官网下载对...原创 2020-04-06 10:30:10 · 999 阅读 · 1 评论 -
pwn之cgpwn2
https://blog.csdn.net/qq_43986365/article/details/94974853 https://blog.csdn.net/Closing_time/article/details/100428850 https://www.jianshu.com/p/3d19056282bf https://bbs.pediy.com/thread-254851.htm ...原创 2019-10-22 21:02:43 · 759 阅读 · 0 评论 -
pwnable之bof
看代码 #include <stdio.h> #include <string.h> #include <stdlib.h> void func(int key){ char overflowme[32]; printf("overflow me : "); gets(overflowme); // smash me! if(key == 0xcafeb...原创 2019-10-18 20:26:09 · 404 阅读 · 0 评论