2016-07-21 18:38:57 +00:00
|
|
|
Fuzzing expat
|
|
|
|
=============
|
|
|
|
|
2016-07-26 22:18:54 +00:00
|
|
|
[http://expat.sourceforge.net/](http://expat.sourceforge.net/)
|
|
|
|
|
2016-09-27 19:15:18 +00:00
|
|
|
To build fuzzers: build and run the docker image:
|
2016-07-26 22:18:54 +00:00
|
|
|
````bash
|
2016-09-27 19:15:18 +00:00
|
|
|
# Checkout sources
|
2016-09-27 19:14:29 +00:00
|
|
|
git clone https://github.com/google/oss-fuzz.git
|
|
|
|
git clone git://git.code.sf.net/p/expat/code_git expat
|
2016-09-27 19:15:18 +00:00
|
|
|
# Build & run the image.
|
2016-09-27 19:14:29 +00:00
|
|
|
docker build -t ossfuzz/expat oss-fizz/expat && \
|
2016-10-12 23:25:06 +00:00
|
|
|
docker run -i -v $PWD/expat:/src/expat -v $HOME/tmp/out:/out -t ossfuzz/expat
|
2016-07-26 22:18:54 +00:00
|
|
|
````
|
2016-09-27 19:14:29 +00:00
|
|
|
Fuzzers will be in `$HOME/tmp/out`.
|
2016-08-16 20:18:04 +00:00
|
|
|
|
|
|
|
|