adding some comments

This commit is contained in:
Philip-21 2023-03-07 18:46:36 +01:00
parent 4b6e127bc9
commit f36e372d19

View File

@ -1,5 +1,11 @@
package main package main
/* Fuzz testing or fuzzing is an automated software testing method
that injects invalid, malformed, or unexpected inputs into a system
to reveal software defects and vulnerabilities.
A fuzzing tool injects these inputs into the system and then monitors for exceptions such as crashes or information leakage
*/
import ( import (
"bytes" "bytes"
"errors" "errors"