Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/epi052/fuzzing-101-solutions
Companion repository to the Fuzzing101 with LibAFL series of blog posts.
https://github.com/epi052/fuzzing-101-solutions
fuzzing hacktoberfest libafl rust
Last synced: 9 days ago
JSON representation
Companion repository to the Fuzzing101 with LibAFL series of blog posts.
- Host: GitHub
- URL: https://github.com/epi052/fuzzing-101-solutions
- Owner: epi052
- Created: 2021-11-06T21:44:35.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-04T14:04:04.000Z (over 1 year ago)
- Last Synced: 2024-10-14T20:54:56.006Z (22 days ago)
- Topics: fuzzing, hacktoberfest, libafl, rust
- Language: C
- Homepage: https://epi052.gitlab.io/notes-to-self/blog/2021-11-01-fuzzing-101-with-libafl/
- Size: 106 MB
- Stars: 139
- Watchers: 7
- Forks: 24
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fuzzing-101-solutions
Companion repository to the [Fuzzing101 with LibAFL](https://epi052.gitlab.io/notes-to-self/blog/2021-11-01-fuzzing-101-with-libafl/) series of blog posts.
[Tags](https://github.com/epi052/fuzzing-101-solutions/tags) are sync'd with blog post releases and can be used to view the repo in the same state as any particular blog post.
## Overview
Twitter user [Antonio Morales](https://twitter.com/nosoynadiemas?lang=en) created the [Fuzzing101](https://github.com/antonio-morales/Fuzzing101) repository
in August of 2021. In the repo, he has created exercises and solutions meant to teach the basics of fuzzing to anyone who wants to learn how to find
vulnerabilities in real software projects. The repo focuses on [AFL++](https://github.com/AFLplusplus/AFLplusplus) usage, but this repository aims to solve
the exercises using [LibAFL](https://github.com/AFLplusplus/LibAFL) instead. We'll be exploring the library and writing fuzzers in Rust in order to solve
the challenges in a way that closely aligns with the suggested AFL++ usage.