2021-06-08 22:22:32 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
dotnet build -c Release ../../Emby.Server.Implementations/Emby.Server.Implementations.csproj --output bin
|
|
|
|
|
sharpfuzz bin/Emby.Server.Implementations.dll
|
|
|
|
|
cp bin/Emby.Server.Implementations.dll .
|
|
|
|
|
|
|
|
|
|
dotnet build
|
|
|
|
|
mkdir -p Findings
|
2023-10-22 17:01:51 +02:00
|
|
|
AFL_SKIP_BIN_CHECK=1 afl-fuzz -i "Testcases/$1" -o "Findings/$1" -t 5000 ./bin/Debug/net7.0/Emby.Server.Implementations.Fuzz "$1"
|