安全
geniusle201
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Memory Segments
From “Hacking: The art of exploitation.”the compiled code goes into the text segment,while the variables reside in the remaining segments.If static or global variables are initialized with data, they are stored in the data memory segment;otherwise, t原创 2021-04-15 16:33:42 · 488 阅读 · 0 评论 -
afl-fuzz-有源码文件
0. afl安装网上太多了,就不再赘述了 :-)1. 被测文件源码#include <stdio.h>#include <string.h>int main(){ char buf[20]; printf("enter a string:\n"); gets(buf); if (strcmp(buf, "admin")) printf("Fine!"); else printf("Failed!"原创 2020-12-07 16:37:35 · 939 阅读 · 0 评论 -
note | Fuzzing basic terms
Content1. Vulnerability2. Basic Bug Categories3. Bug Hunting Techniques4. Fuzzing1. VulnerabilityIn short, vulnerabilities are the result of three kinds of flaws:Implementation errors (e.g., overf...原创 2019-04-02 09:46:50 · 233 阅读 · 0 评论 -
(continued...) some websites for vulnerabilities founding
Some really cool sites for vulnerabilities foundingGoogle Project Zero看雪论坛知道创宇paper玄武推送原创 2019-09-12 16:29:58 · 180 阅读 · 0 评论
分享