Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changes because of shared memory support. #329

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions readme_dr.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Example command line:
```
path\to\DynamoRIO\bin64\drrun.exe -c winafl.dll -debug
-target_module test_gdiplus.exe -target_offset 0x16e0 -fuzz_iterations 10
-nargs 2 -- test_gdiplus.exe input.bmp
-nargs 2 -- test_gdiplus.exe -f input.bmp
```

You should see the output corresponding to your target function being run 10
Expand Down Expand Up @@ -133,7 +133,7 @@ An example command line would look like:
afl-fuzz.exe -i in -o out -D C:\work\winafl\DynamoRIO\bin64 -t 20000 --
-coverage_module gdiplus.dll -coverage_module WindowsCodecs.dll
-fuzz_iterations 5000 -target_module test_gdiplus.exe -target_offset 0x16e0
-nargs 2 -- test_gdiplus.exe @@
-nargs 2 -- test_gdiplus.exe -f @@
```

Alternately, if symbols for test_gdiplus.exe are available, you can use
Expand All @@ -143,7 +143,7 @@ Alternately, if symbols for test_gdiplus.exe are available, you can use
afl-fuzz.exe -i in -o out -D C:\work\winafl\DynamoRIO\bin64 -t 20000 --
-coverage_module gdiplus.dll -coverage_module WindowsCodecs.dll
-fuzz_iterations 5000 -target_module test_gdiplus.exe -target_method main
-nargs 2 -- test_gdiplus.exe @@
-nargs 2 -- test_gdiplus.exe -f @@
```

That's it. Happy fuzzing!
Expand Down