分类
排序
干货 | 如何通过HackerOne快速提升挖洞水平和经验
最近在Github上刷到了这个项目,非常不错,我觉得可以分享给大家https://github.com/reddelexc/hackerone-reports该项目爬取了HackerOne上前100的漏洞报告,而且分门别类了,不同的漏洞类型和不...
画红心程序
#写一个画爱心程序 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...
写一个usb的案例程序,插入U盘给个提示
//写一个usb的案例程序,插入U盘给个提示 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <fcntl.h> #include <...
黑客黑页代码
<!DOCTYPE html><html><head><title>Matrix</title><style>body {margin: 0;overflow: hidden;background-color: black;}canvas {position: fixed;top: 0;...
论一只木马的自我修养(一)
免责声明本人于本论坛分享的技术均基于学术交流与技术探讨目的,旨在促进网络安全技术发展及行业进步。禁止非法用途:所有内容严禁用于任何违反法律法规、破坏网络安全或侵害他人合法权益的行为...
转-菜鸟KOF97单文件版本制作记
我是个KOF迷,自从上初中以来就对KOF情有独钟,(没少被老爸K)尤其是KOF97版本更是喜欢的很,从有了电脑开始,WinKawaks模拟器就一直常驻我的硬盘,模拟最多的游戏就是KOF97,自己的键盘也快不行...
写一段监控网络包的程序
// 写一段监控网络包的程序 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/socket.h> #include <arpa/ine...
写一段vmp3.0脱壳的程序(来自AI)
// 写一段vmp3.0脱壳的程序 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <fcntl.h> #include <sys/types.h&g...
写一段隐写术测试代码,将字符串ABC写入可执行文件
//写一段隐写术测试代码,将字符串ABC写入可执行文件 #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { FILE *fp; char *str = 'ABC'; if((fp =...