Skip to content
This repository was archived by the owner on Apr 30, 2021. It is now read-only.

Commit 12e5020

Browse files
author
Yevgeny Pats
committed
Merge branch 'master' of github.com:fuzzitdev/jsfuzz
2 parents 5ff8bef + c5f317d commit 12e5020

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff 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
109109
More fuzz targets examples (for real and popular libraries) are located under the examples directory and
110110
bugs 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

114118
jsfuzz logic is heavily based on [go-fuzz](https://github.com/dvyukov/go-fuzz) originally developed by [Dmitry Vyukov's](https://twitter.com/dvyukov).
115119
Which 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
118122
interface but it looks like it is currently unmaintained.
119123

120124
For coverage jsfuzz is using [istanbuljs](https://istanbul.js.org) instrumentation and coverage library.
121125

126+
122127
## Contributions
123128

124129
Contributions are welcome!:) There are still a lot of things to improve, and tests and features to add. We will slowly post those in the

0 commit comments

Comments
 (0)