Golang Fuzzing Explained

Shubham Deshmukh
3 min readMay 6, 2024

Fuzz Test made easy

1. Introduction

Fuzz testing is a Black Box software testing technique that involves feeding random or semi-random data into a program to uncover edge cases, bugs, and potential security vulnerabilities. It’s particularly effective in identifying unexpected behavior that might not be readily apparent through traditional unit or integration testing.

2. Prerequisites

  • Basic understanding of Go programming: Familiarity with Go’s syntax, data structures, and control flow is essential for writing effective fuzz tests.
  • Knowledge of testing concepts: An understanding of testing principles and frameworks will help you design and implement fuzz tests efficiently.

3. What is Fuzzing?

Fuzzing operates by repeatedly generating random or mutated inputs and feeding them to the program under test. This process aims to:

  • Discover crashes: Fuzzers often trigger crashes caused by invalid input handling, memory corruption, or other issues.
  • Expose security vulnerabilities: Fuzzing can reveal vulnerabilities like buffer overflows, SQL injection, and cross-site scripting (XSS) that might be exploited by attackers.
  • Identify edge cases: Fuzzing can uncover unexpected behaviors that may occur when the program encounters unusual input, helping you improve its security and robustness.

4. Advantages of Fuzzing

  • Uncovers hidden bugs: Fuzzing can find bugs that traditional testing methods might miss, especially those related to edge cases or unexpected input.
  • Improves code quality: By identifying and fixing bugs early, fuzzing leads to more robust and reliable code.
  • Boosts security: Fuzzing helps detect and prevent security vulnerabilities, enhancing the overall security posture of your application.

5. Brief Overview of Fuzzing in Go

Go offers built-in fuzz testing capabilities since Go 1.18. This native fuzzing framework provides a convenient and efficient way to write fuzz tests directly within your Go code. Here’s a basic outline:

  • Fuzz test function: A fuzz test function is named FuzzXxx (e.g., FuzzReverse), takes a *testing.F argument, and has no return value.
  • Fuzz target: The fuzz target is a method call within the fuzz test function that takes a *testing.T argument and the fuzzing arguments.
  • Seed corpus: Optionally, you can provide a seed corpus (a set of initial inputs) to guide the fuzzer’s exploration.

6. Implementation/Example

Let’s consider a simple function that reverses a string:

func Reverse(s string) string {
runes := []rune(s)
for i, j := 0, len(runes)-1; i < j; i, j = i+1, j-1 {
runes[i], runes[j] = runes[j], runes[i]
}
return string(runes)
}

Here’s a corresponding fuzz test:

func FuzzReverse(f *testing.F) {
f.Add([]string("hello","hi","shubham")) // Seed corpus
f.Fuzz(func(t *testing.T, orig []string) {
rev := Reverse(orig)
doubleRev := Reverse(rev)
if orig != doubleRev {
t.Errorf("Before: %q, after: %q", orig, doubleRev)
}
})
}

Running a fuzz test

go test -fuzz=FuzzTestName

for running the test for a specific time use the flag -fuzztime

In this example:

  • The fuzz test function is named FuzzReverse.
  • The fuzz target is the Reverse function call with the orig string slice as the argument.
  • The seed corpus contains the string “hello”, “hi”, and “shubham”.
  • The fuzzer generates random byte slices and tests whether the reversed string matches the expected reversed byte slice.

7. Conclusion

Fuzz testing is a valuable tool in your Go testing arsenal. By incorporating fuzzing into your development process, you can significantly improve the quality, robustness, and security of your Go applications. Remember to start with small, focused fuzz tests and gradually expand them as you gain confidence.

Thanks for reading. I hope this story was helpful. If you are interested,

check out my other articles.

you can also visit shubhamdeshmukh.com

--

--

Shubham Deshmukh

Software Developer | Cloud infrastructure | IaC | AWS | DevOps | Hit the follow button for Cloud-related content 😄