aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
Commit message (Collapse)AuthorAge
* [all] Make fuzz targets world executable (#5751)Gravatar Fabian Meumertzheim2021-05-12
| | | | Making fuzz targets only user executable as the root user makes them non-executable outside the container, e.g. in the oss-fuzz/build/ dir.
* Update accepting_new_projects.md (#5750)Gravatar olivekl2021-05-11
| | | Fix formatting in new project submission guidelines
* docs: Fix syntax error typo (#5710)Gravatar MarcoFalke2021-05-04
|
* doc: Explain fuzzing_engines (#5704)Gravatar MarcoFalke2021-05-03
| | | Also fix some dead links
* Bump rexml from 3.2.4 to 3.2.5 in /docs (#5696)Gravatar dependabot[bot]2021-05-02
| | | | | | | | | | Bumps [rexml](https://github.com/ruby/rexml) from 3.2.4 to 3.2.5. - [Release notes](https://github.com/ruby/rexml/releases) - [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md) - [Commits](https://github.com/ruby/rexml/compare/v3.2.4...v3.2.5) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Fix typos and one link (#5645)Gravatar Bruno P. Kinoshita2021-04-20
| | | | | | | | | * Fix link to Jenkins * Typos * Fix builder, not jenkins. Co-authored-by: Abhishek Arya <inferno@chromium.org>
* Update the Bazel project integration guide to capture the new simpler tool. ↵Gravatar Stefan Bucur2021-03-31
| | | | | | | | | (#5550) * Update the Bazel project integration guide to capture the new simpler tool. * Update bazel.md Co-authored-by: Abhishek Arya <inferno@chromium.org>
* Fix minor typo in docs (#5540)Gravatar AdamKorcz2021-03-31
|
* Clarify in the new project guide that pull_images may be needed for coverage ↵Gravatar Stefan Bucur2021-03-25
| | | | runs. (#5506)
* update documenation (#5462)Gravatar van Hauser2021-03-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * output afl++ setup * update commit id * update afl++ commit id * asan + cmplog fix * update commit id * update and enhance afl++ * update afl++ commit id, better run asan options * fix linter * add debug_afl script * Update debug_afl * Update compile_afl * fix for karchive * put debug_afl in the docker container * asan poison fix * fix asan settings for zeek * update afl++ commit id * fix * update afl++ commit id * final touches * remove map size * remove old comment * llvm 13 fix * enhance documentation * fix capstone build.sh * update doc Co-authored-by: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>
* [docs] Change wording regarding i386 fuzzing. (#5449)Gravatar jonathanmetzman2021-03-20
| | | | Mention that only some projects will benefit. Fixes: #4752.
* Modify deadline text to disclose immediately after fix is released. (#5323)Gravatar Oliver Chang2021-03-12
|
* Add docs for Java/JVM fuzzing (#5298)Gravatar Fabian Meumertzheim2021-03-05
| | | Related: https://github.com/google/oss-fuzz/issues/5178
* Recommend Ghostwriter (#5246)Gravatar Zac Hatfield-Dodds2021-02-25
|
* Go 1.16 more fixes (#5239)Gravatar Catena cyber2021-02-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fixes cilium build * Fixes dragonfly build * Fixes fasthttp build * Fixes fastjson build * golang build: change directory only temporary * Fixes gitea build * Fixes grpc-gateway build * Fixes hugo project build * Fixes ipfs build * Fixes jsonparser build * Fixes kubernetes build * Fixes loki build * Fixes minify build * Fixes nats build * Removes go get from the docs * Fixes quic-go build * Fixes radon build * Fixes syzkaller build * Fixes tidb build * Fixes vitess build
* [CIFuzz] Support languages non-C++ projects (e.g. Python projects) (#5222)Gravatar jonathanmetzman2021-02-19
| | | | Allow use of non-C++ projects by specifying the language in the workflow file. Fixes #5195
* [CIFuzz] Fix handling of sanitizer artifacts (#5182)Gravatar jonathanmetzman2021-02-18
| | | | | Fixes #5175 1. Put sanitizer in artifact name. 2. Fix parsing of non-ASAN stacks.
* [CIFuzz] Note which languages are supported (#5208)Gravatar jonathanmetzman2021-02-18
| | | Related #5195
* Update year in copyright header in documentation (#5167)Gravatar AdamKorcz2021-02-11
|
* Update bazel.mdGravatar Abhishek Arya2021-02-01
|
* Add a subsection on Bazel projects in the New Project Guide. (#5069)Gravatar Stefan Bucur2021-02-01
| | | | | * Add a subsection on Bazel projects in the New Project Guide. * Turned the Bazel doc into a stand-alone page with detailed instructions.
* Fix argument order in run_fuzzer command example. (#5060)Gravatar Stefan Bucur2021-01-28
|
* Use afl++ in docs. (#5049)Gravatar Abhishek Arya2021-01-26
|
* Replace terms that are uninclusive. (#5045)Gravatar jonathanmetzman2021-01-25
|
* Show how to use Hypothesis to fuzz Python code (#4975)Gravatar Zac Hatfield-Dodds2021-01-15
| | | | | | | | * Show how to use PBT Hypothesis makes fuzzing complex Python code fun, easy, and a lot more rewarding than constructing all your objects by hand. * Review updates
* Upgrade docs. (#4966)Gravatar Abhishek Arya2021-01-14
|
* Update docs, add python support. (#4878)Gravatar Abhishek Arya2020-12-21
|
* Fix symbolization for python targets. (#4836)Gravatar Abhishek Arya2020-12-13
|
* Add docs for main_repo (#4827)Gravatar Abhishek Arya2020-12-11
| | | Fixes https://github.com/google/oss-fuzz/issues/4825
* Fix atheris integration. (#4824)Gravatar Abhishek Arya2020-12-11
|
* Force symbolization in atheris python fuzz targets (#4765)Gravatar Abhishek Arya2020-12-02
| | | | | * Add artheris and python lib for stack symbolization in python targets. * Switch to symbolize=1 in wrapper.
* Update python_lang.mdGravatar Abhishek Arya2020-12-01
|
* Enable UBSan for python projects. (#4757)Gravatar Abhishek Arya2020-11-30
| | | | | * Enable UBSan for python projects. * Update docs.
* [docs] Fix docs to use "LLC" instead of "Inc." (#4756)Gravatar jonathanmetzman2020-11-30
|
* Leak detection is not expected to work with python targets, disable. (#4751)Gravatar Abhishek Arya2020-11-30
| | | | | Disable leak detection in python target execution wrapper since it is not expected to work. Also, updated the documentation for python -only code fuzzers to not use LD_PRELOAD.
* Fix "exec format error" due to incorrect shebang in python target. (#4746)Gravatar Abhishek Arya2020-11-29
|
* Golang modules documentation (#4711)Gravatar Catena cyber2020-11-25
| | | | | * Clones golang-protobuf into the expected directory * Improves the documentation for golang projects with modules
* Add documentation for Python fuzzing. (#4709)Gravatar mbarbella-chromium2020-11-24
| | | | | * Add documentation for Python fuzzing. * Minor formatting/wording changes
* [infra] Golang coverage summary for each fuzz target (#2817, #2714). (#4671)Gravatar Catena cyber2020-11-20
| | | | | | | | | * Golang coverage summary for each fuzz target * Document usage of compile_go_fuzzer * update the documentation change Co-authored-by: Max Moroz <mmoroz@chromium.org>
* [docs] Clarify the integration rewards page regarding the max reward amount. ↵Gravatar Max Moroz2020-11-05
| | | | | | | | | | | (#4599) * [docs] Clarify the integration rewards page regarding the max reward amount. * replace the "biggest rewards" with "top rewards" * explain the rewards structure in more detail as suggested by Oliver * fix a typo
* [docs] Reproducing: clarify that reproduce command works only with libfuzzer ↵Gravatar Max Moroz2020-10-05
| | | | | (#4497). (#4504) The change was proposed by @pauldreik in https://github.com/google/oss-fuzz/issues/4497#issuecomment-703075579
* [cifuzz] Improve docs (#4359)Gravatar jonathanmetzman2020-09-08
|
* Fix typo in continuous_integration.mdGravatar jonathanmetzman2020-08-24
|
* [infra][docs] Be more explicit about code coverage being supported for C/C++ ↵Gravatar Max Moroz2020-08-12
| | | | | | | only (#4284). (#4303) * [infra][docs] Be more explicit about code coverage being supported for C/C++ only (#4284). * fix typos and pass env variable
* [docs] Remove link to the old builder (#3538). (#4257)Gravatar Max Moroz2020-08-06
|
* Updating documentation to reflect new feature custom build frequency (#4235)Gravatar kabeer272020-08-03
|
* Add corpus-dir to run_fuzzer, for later use in coverage cmd. (#4191)Gravatar Abhishek Arya2020-07-24
| | | | | * Add corpus-dir to run_fuzzer, for later use in coverage cmd. * Update as per comment.
* [infra] Rename msan-builder to msan-libs-builder (#3388). (#4190)Gravatar Max Moroz2020-07-24
| | | | | | | * [infra] Rename msan-builder to msan-libs-builder and add (broken) dfsan-libs-builder (#3388). * remove dfsan-libs-builder for now * presubmit format
* Upgrade docs rubygems. (#4165)Gravatar Abhishek Arya2020-07-20
|
* Delete unnecessary files and fix format in some MD pages (#4115)Gravatar R. Elliott Childre2020-07-16
| | | | | | | | | | | | | | | | | | | | * style: Clean up the repo * Bolster the `.gitignore` * Follow `CONTRIBUTING.md` guidelines and wrap `README.md` to 80 characters and seperate links for readability * Remove pesky Unicode dash in `CONTRIBUTING.md` * Remove `.DS_STORE` files * Rename `#project.yaml#` to something logical and enable stntax highlighting * Updates from reviewers * Greatly reduce `.gitignore` to only macOS `.DS_Store` and Vim temporary files * Apply markdown style to `docs/index.md` * small comma grammatical change * http -> https