Skip to content
This repository was archived by the owner on Apr 30, 2021. It is now read-only.

Commit 80a029e

Browse files
author
Yevgeny Pats
committed
don't print output of crash for go-fuzz engine
1 parent 4e0cfc6 commit 80a029e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

client/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
const FuzzitEndpoint = "https://app.fuzzit.dev"
14-
const Version = "v2.4.68"
14+
const Version = "v2.4.69"
1515

1616
type Target struct {
1717
Name string `firestore:"target_name"`

client/gofuzz.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,10 @@ func (c *FuzzitClient) runGoFuzzFuzzing() error {
202202
if !strings.Contains(fileName, ".") && !uniqueCrashes[fileName] && fileName != "crashers" {
203203
uniqueCrashes[fileName] = true
204204
log.Println("found new crash")
205-
err := catLastBytes(fmt.Sprintf("workdir/crashers/%s.output", fileName), 1000)
206-
if err != nil {
207-
return err
208-
}
205+
//err := catLastBytes(fmt.Sprintf("workdir/crashers/%s.output", fileName), 1000)
206+
//if err != nil {
207+
// return err
208+
//}
209209

210210
err = c.uploadGoFuzzCrash("workdir/crashers/" + fileName)
211211
if err != nil {

0 commit comments

Comments
 (0)