fuzzitdev / jsfuzz

coverage guided fuzz testing for javascript
https://gitlab.com/gitlab-org/security-products/analyzers/fuzzers/jsfuzz
Apache License 2.0
605 stars 48 forks source link

Add path fuzzer #12

Closed bookmoons closed 4 years ago

bookmoons commented 4 years ago

Adds file path string fuzzer. Targets the path module in the Node.js stdlib. Follows the go-fuzz pattern of running all possible path methods on the fuzz.

This one doesn't seem to be hitting any expected errors so I left out the error exclusion logic.

Closes #8.