sharpfuzz icon indicating copy to clipboard operation
sharpfuzz copied to clipboard

AFL-based fuzz testing for .NET

Results 15 sharpfuzz issues
Sort by recently updated
recently updated
newest added

Is Sharpfuzz available on windows?

Hi, I have been having the same problems as this closed issue: https://github.com/Metalnem/sharpfuzz/issues/16 I've been trying to run the following example from ReadMe I get the following error: ``` jack@DESKTOP-HPQQTM1:~/test$...

Is there currently a way to use afl-showmap on an instrumented .NET DLL? I get "No instrumentation detected" when trying afl-showmap, I also tried running it with AFL_SKIP_BIN_CHECK=1. If not,...

AFL++ is much improved version of AFL so it's better to replace AFL with AFL++

![IMG_20211217_145930_403.png](https://user-images.githubusercontent.com/87482768/146541747-05d32f31-e477-422a-acb5-e555aa8b795e.png) Our function: ``` public static string ToString(this IEnumerable source, char separator) { return ToString(source, separator.ToString()); } ``` Our csproj file: ``` Exe net5.0 Core.dll ``` Our Program.cs: ``` using...

Hi. I tried to build AFL from the instruction from readme, but it's failed. I'm on MacOS. Build logs: ```bash ➜ afl-2.52b patch < RemoveInstrumentationCheck.diff patching file afl-fuzz.c ➜ afl-2.52b...

Hi! I have a question about these lines: https://github.com/Metalnem/sharpfuzz/blob/245c6ae1b10e484be1ef440b0d23c1cfbaf2913c/src/SharpFuzz/Fuzzer.LibFuzzer.cs#L62 What is data here? And why don't you work with stream like this: https://github.com/Metalnem/sharpfuzz/blob/245c6ae1b10e484be1ef440b0d23c1cfbaf2913c/src/SharpFuzz/Fuzzer.OutOfProcess.cs#L213 And second question: I can not find...

Trying to use this on a html to pdf library (https://www.nuget.org/packages/IronPdf/) and got this error: uname -a : ``` Linux 5.15.90.1-microsoft-standard-WSL2 #1 SMP Fri Jan 27 02:56:13 UTC 2023 x86_64...

I've been using your SharpFuzz and finding it quite useful. However, I have a question. It seems like SharpFuzz takes input generated by afl and reports that input if an...