摘要: #include <stdio.h> int main() { int i, j, n, m; /*定义变量i,j,n,m*/ int a[16] = { 0 }; /*定义数组a,元素初始值为0*/ /*clrs() 清屏*/ printf("please input the decimalism 阅读全文
posted @ 2025-01-26 00:07 SplanetZero 阅读(19) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() /*main()主函数*/ { int i; /*定义一个变量i*/ printf("please input decimalism number:\n"); /*双引号内普通字符原样输出并换行*/ scanf("%d", &i); /*s 阅读全文
posted @ 2025-01-25 23:47 SplanetZero 阅读(34) 评论(0) 推荐(0)
摘要: Nday:已经公布的漏洞,并且官方已经公布了补丁1day:已经公布的漏洞,但是官方还未公布补丁的0day:还没有公布的漏洞(没有补丁) 阅读全文
posted @ 2024-10-18 17:04 SplanetZero 阅读(136) 评论(0) 推荐(0)
摘要: POC:常指一段证明有漏洞存在的代码EXP:指利用系统漏洞进行攻击的动作PayLoad:指成功入侵之后,真正在目标系统执行的代码或指令(具体做了哪些攻击)shellcode:是payload的一种,其实质是在入侵后,获得了一个shell窗口,可以使用shell做增加或删除系统管理员等一系列操作 阅读全文
posted @ 2024-10-18 16:21 SplanetZero 阅读(69) 评论(0) 推荐(0)