Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/2fd9418af021211aa97f8bda5a534f4eb1511769/fuzz/Jellyfin.Api.Fuzz/fuzz.sh You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/fuzz/Jellyfin.Api.Fuzz/fuzz.sh

12 lines
299 B

#!/bin/sh
set -e
dotnet build -c Release ../../Jellyfin.Api/Jellyfin.Api.csproj --output bin
sharpfuzz bin/Jellyfin.Api.dll
cp bin/Jellyfin.Api.dll .
dotnet build
mkdir -p Findings
AFL_SKIP_BIN_CHECK=1 afl-fuzz -i "Testcases/$1" -o "Findings/$1" -t 5000 ./bin/Debug/net8.0/Jellyfin.Api.Fuzz "$1"