From b40e9d1fb8643a0e180b9c3d6e338d3e21566f4d Mon Sep 17 00:00:00 2001 From: Book Moons <35854232+bookmoons@users.noreply.github.com> Date: Thu, 29 Aug 2019 03:37:00 -0400 Subject: [PATCH] fuzz: Qualify target ID Includes org name in target ID. --- fuzzit.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fuzzit.sh b/fuzzit.sh index 90e823e..2f1b4f6 100755 --- a/fuzzit.sh +++ b/fuzzit.sh @@ -8,6 +8,7 @@ if [ "$#" -ne 1 ]; then fi # Configure +NAME=transfersh ROOT=./server TYPE=$1 @@ -27,7 +28,7 @@ function fuzz { DIR=${3:-$ROOT} go-fuzz-build -libfuzzer -func $FUNC -o fuzzer.a $DIR clang -fsanitize=fuzzer fuzzer.a -o fuzzer - ./fuzzit create job --type $TYPE $TARGET fuzzer + ./fuzzit create job --type $TYPE $NAME/$TARGET fuzzer } fuzz Profile profile fuzz HTTP http