summaryrefslogtreecommitdiff
path: root/fuzz/harnesses/fido2-assert-G
diff options
context:
space:
mode:
Diffstat (limited to 'fuzz/harnesses/fido2-assert-G')
-rwxr-xr-xfuzz/harnesses/fido2-assert-G31
1 files changed, 0 insertions, 31 deletions
diff --git a/fuzz/harnesses/fido2-assert-G b/fuzz/harnesses/fido2-assert-G
deleted file mode 100755
index 6671449..0000000
--- a/fuzz/harnesses/fido2-assert-G
+++ /dev/null
@@ -1,31 +0,0 @@
1#!/bin/bash -u
2# Copyright (c) 2019 Yubico AB. All rights reserved.
3# Use of this source code is governed by a BSD-style
4# license that can be found in the LICENSE file.
5
6T=fido2-assert-G
7
8sync() {
9 mkdir ${T}
10 ssh "${REMOTE}" "cd ${T}/afl-out && tar -cf- queue" | tar -C ${T} -xf-
11}
12
13run() {
14 find ${T}/queue -type f | while read f; do
15 cat "${f}" | LD_PRELOAD=${PRELOAD} build/tools/fido2-assert \
16 -G -i - nodev 2>/dev/null 1>&2
17 done
18}
19
20case "$1" in
21sync)
22 sync
23 ;;
24run)
25 run
26 exit 0
27 ;;
28*)
29 echo unknown command "$1"
30 exit 1
31esac