You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
299 B
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"
|