mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 19:08:53 -07:00
12 lines
299 B
Bash
12 lines
299 B
Bash
|
#!/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/net7.0/Jellyfin.Api.Fuzz "$1"
|