diff options
author | fanquake <fanquake@gmail.com> | 2021-05-16 19:59:00 +1000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-05-16 19:59:27 +1000 |
commit | 1ef34ee25ed34b2b092f15bf3dca5c0508092829 (patch) | |
tree | f7cb87609aa19f74971edf1d2027caa62f1eca99 /doc | |
parent | c8571486364d6e9ca8c86bd1c81e230ca64f8904 (diff) | |
parent | fadd98d02f5ebb07a68006f6a0b33881fdf78505 (diff) |
Merge bitcoin/bitcoin#21947: doc: Fix OSS-Fuzz links
fadd98d02f5ebb07a68006f6a0b33881fdf78505 doc: Fix OSS-Fuzz links (MarcoFalke)
Pull request description:
* Add missing link to the coverage report
* Replace unqualified link with qualified one
ACKs for top commit:
practicalswift:
ACK fadd98d02f5ebb07a68006f6a0b33881fdf78505
jarolrod:
ACK fadd98d02f5ebb07a68006f6a0b33881fdf78505
Tree-SHA512: 5d5138288ae75d6a9ae536f307a63813ffe60c628a8c9a74b33f0d1be1a34fac2ff5eca9c9fe64be3139f2251736ba088c5f3731f0b3f50c70c5a5f1a89f0ea4
Diffstat (limited to 'doc')
-rw-r--r-- | doc/fuzzing.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/fuzzing.md b/doc/fuzzing.md index 5ffa3a9416..e086840fe6 100644 --- a/doc/fuzzing.md +++ b/doc/fuzzing.md @@ -234,7 +234,7 @@ $ honggfuzz/honggfuzz --exit_upon_crash --quiet --timeout 4 -n 1 -Q \ # OSS-Fuzz Bitcoin Core participates in Google's [OSS-Fuzz](https://github.com/google/oss-fuzz/tree/master/projects/bitcoin-core) -program, which includes a dashboard of [publicly disclosed vulnerabilities](https://bugs.chromium.org/p/oss-fuzz/issues/list). +program, which includes a dashboard of [publicly disclosed vulnerabilities](https://bugs.chromium.org/p/oss-fuzz/issues/list?q=bitcoin-core). Generally, we try to disclose vulnerabilities as soon as possible after they are fixed to give users the knowledge they need to be protected. However, because Bitcoin is a live P2P network, and not just standalone local software, @@ -242,3 +242,5 @@ we might not fully disclose every issue within Google's standard [90-day disclosure window](https://google.github.io/oss-fuzz/getting-started/bug-disclosure-guidelines/) if a partial or delayed disclosure is important to protect users or the function of the network. + +OSS-Fuzz also produces [a fuzzing coverage report](https://oss-fuzz.com/coverage-report/job/libfuzzer_asan_bitcoin-core/latest). |