From c06a0bae0417696be8e13d47f3bbd2220bf2e5f8 Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Mon, 4 Oct 2021 20:39:51 +0200 Subject: [PATCH] Meta: Fix broken external links Meta/Lagom/ReadMe.md never had any other name; not sure how that typo happened. The link to the non-existent directory is especially vexing because the text goes on to explain that we don't want such a directory to exist. Found by running markdown-checker, and 'wget'ing all external links. --- Meta/Lagom/Fuzzers/FuzzilliJsInstructions.md | 2 +- Meta/Lagom/ReadMe.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Meta/Lagom/Fuzzers/FuzzilliJsInstructions.md b/Meta/Lagom/Fuzzers/FuzzilliJsInstructions.md index ac6091e41e..3e3d789d8c 100644 --- a/Meta/Lagom/Fuzzers/FuzzilliJsInstructions.md +++ b/Meta/Lagom/Fuzzers/FuzzilliJsInstructions.md @@ -2,7 +2,7 @@ 1. Download a copy of the Fuzzilli repo from https://github.com/googleprojectzero/fuzzilli 2. Install Swift and make sure it's in your path environment variable. -3. Build FuzzilliJs as you would the other fuzzers. [See README.md in the parent folder.](https://github.com/SerenityOS/serenity/blob/master/Meta/Lagom/README.md) +3. Build FuzzilliJs as you would the other fuzzers. [See ReadMe.md in the parent folder.](https://github.com/SerenityOS/serenity/blob/master/Meta/Lagom/ReadMe.md) 4. Apply the add-serenity-support-to-fuzzilli.patch patch file to the Fuzzilli root directory. ```patch -p1 < /path/to/add-serenity-support-to-fuzzilli.patch``` 5. Build Fuzzilli with ```swift build -c release``` 6. Run Fuzzilli with ```swift run -c release FuzzilliCli --profile=serenity /path/to/FuzzilliJs```. See ```swift run FuzzilliCli --help``` for options. diff --git a/Meta/Lagom/ReadMe.md b/Meta/Lagom/ReadMe.md index 960c76615e..1902158740 100644 --- a/Meta/Lagom/ReadMe.md +++ b/Meta/Lagom/ReadMe.md @@ -49,7 +49,7 @@ We have a [bmp suite and a jpg suite and several others](https://github.com/Sere They are GPL'ed, and therefore not quite as compatible with the rest of Serenity. That's probably not a problem, but keeping "our" testcases separate from those GPL'ed suits sounds like a good idea. -We could keep those testcases somewhere else in the repository, like [a `fuzz` directory](https://github.com/SerenityOS/serenity/tree/master/Base/res/html/misc/jpgsuite_files/fuzz). +We could keep those testcases somewhere else in the repository, like a `fuzz` directory. But fuzzing tends to generate more and more and more files, and they will blow up in size. Especially if we keep all interesting testcases, which is exactly what I intend to do.