This repository was archived by the owner on Apr 30, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ function fuzz(buf) {
5252 e .message .indexOf (' Failed to' ) !== - 1 ||
5353 e .message .indexOf (' DecoderBuffer' ) !== - 1 ||
5454 e .message .indexOf (' invalid table spec' ) !== - 1 ||
55- e .message .indexOf (' SOI not found1 ) !== -1) {
55+ e .message .indexOf (' SOI not found ' ) !== - 1 ) {
5656 } else {
5757 throw e;
5858 }
@@ -109,16 +109,21 @@ jsfuzz tries to mimic some of the arguments and output style from [libFuzzer](ht
109109More fuzz targets examples (for real and popular libraries) are located under the examples directory and
110110bugs that were found using those targets are listed in the trophies section.
111111
112+ ## Other languages
113+
114+ Currently this library is also ported to python via [ pythonfuzz] ( https://github.com/fuzzitdev/jsfuzz )
115+
112116## Credits & Acknowledgments
113117
114118jsfuzz logic is heavily based on [ go-fuzz] ( https://github.com/dvyukov/go-fuzz ) originally developed by [ Dmitry Vyukov's] ( https://twitter.com/dvyukov ) .
115119Which is in turn heavily based on [ Michal Zalewski] ( https://twitter.com/lcamtuf ) [ AFL] ( http://lcamtuf.coredump.cx/afl/ ) .
116120
117- A previous take on that was done by [ https: // github.com/connor4312/js-fuzz] with a bit different design, coverage and
121+ A previous take on that was done by https://github.com/connor4312/js-fuzz with a bit different design, coverage and
118122interface but it looks like it is currently unmaintained.
119123
120124For coverage jsfuzz is using [ istanbuljs] ( https://istanbul.js.org ) instrumentation and coverage library.
121125
126+
122127## Contributions
123128
124129Contributions are welcome!:) There are still a lot of things to improve, and tests and features to add. We will slowly post those in the
You can’t perform that action at this time.
0 commit comments