aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xwireshark/download-fuzz-traces.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/wireshark/download-fuzz-traces.sh b/wireshark/download-fuzz-traces.sh
new file mode 100755
index 000000000..4f580a121
--- /dev/null
+++ b/wireshark/download-fuzz-traces.sh
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+URL_PREFIX='https://www.wireshark.org/download/automated/captures/'
+TRACES="$(wget --no-verbose -O - "${URL_PREFIX}" | sed -n 's|^.*<a href="\([^"]\+\).pcap">.*$|\1.pcap|gp')"
+CURDIR="$(dirname ${0})/../tests/pcap"
+
+for trace in ${TRACES}; do
+ destfile="${CURDIR}/${trace}"
+ test -r "${destfile}" || wget --no-verbose "${URL_PREFIX}${trace}" -O "${destfile}"
+done