分类
排序
干货 | 如何通过HackerOne快速提升挖洞水平和经验
最近在Github上刷到了这个项目,非常不错,我觉得可以分享给大家https://github.com/reddelexc/hackerone-reports该项目爬取了HackerOne上前100的漏洞报告,而且分门别类了,不同的漏洞类型和不...
转-菜鸟KOF97单文件版本制作记
我是个KOF迷,自从上初中以来就对KOF情有独钟,(没少被老爸K)尤其是KOF97版本更是喜欢的很,从有了电脑开始,WinKawaks模拟器就一直常驻我的硬盘,模拟最多的游戏就是KOF97,自己的键盘也快不行...
画红心程序
#写一个画爱心程序 import turtle as t t.pensize(2) t.color('red') t.begin_fill() t.left(140) t.forward(180) t.circle(-90,200) t.setheading(60) t.circle(-90,200) t.forward(180) t.end...
写一段隐写术测试代码,将字符串ABC写入可执行文件
//写一段隐写术测试代码,将字符串ABC写入可执行文件 #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { FILE *fp; char *str = 'ABC'; if((fp =...
写一个usb的案例程序,插入U盘给个提示
//写一个usb的案例程序,插入U盘给个提示 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <fcntl.h> #include <...
写一个挖掘linux系统里堆溢出的程序
//写一个挖掘linux系统里堆溢出的程序 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #define ERR_EXIT(m) \ do \ { \ perror(m);...
挖掘linux系统程序里栈溢出的程序(来自AI)
//挖掘linux系统程序里栈溢出的程序 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/types.h> #include <s...
写一段封指定ip的程序
// 写一段封指定ip的程序 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet...
写一段对pe文件分析的程序(仅供参考,来自AI)
// 写一段对pe文件分析的程序 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <fcntl.h> #include <sys/types.h...