Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions projects/reqwest/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Copyright 2026 Google LLC
FROM gcr.io/oss-fuzz-base/base-builder-rust
RUN git clone --depth 1 https://github.com/seanmonstar/reqwest.git reqwest
WORKDIR reqwest
COPY build.sh $SRC/
4 changes: 4 additions & 0 deletions projects/reqwest/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash -eu
cd $SRC/reqwest
cargo fuzz build -O --debug-assertions
cp fuzz/target/x86_64-unknown-linux-gnu/release/fuzz_url /
6 changes: 6 additions & 0 deletions projects/reqwest/project.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
homepage: "https://github.com/seanmonstar/reqwest"
language: rust
primary_contact: "security@rust-lang.org"
main_repo: "https://github.com/seanmonstar/reqwest"
sanitizers: [address]
fuzzing_engines: [libfuzzer]
19 changes: 19 additions & 0 deletions projects/rocket/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

FROM gcr.io/oss-fuzz-base/base-builder-rust
RUN git clone --depth 1 https://github.com/rwf2/Rocket
clap-rs/clap.git rocket
WORKDIR rocket
COPY build.sh $SRC/
18 changes: 18 additions & 0 deletions projects/rocket/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash -eu
# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

cd $SRC/rocket
cargo fuzz build -O --debug-assertions
cp fuzz/target/x86_64-unknown-linux-gnu/release/fuzz_* $OUT/
6 changes: 6 additions & 0 deletions projects/rocket/project.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
homepage: "https://github.com/rwf2/Rocket"
language: rust
primary_contact: "security@rust-lang.org"
main_repo: "https://github.com/rwf2/Rocket"
sanitizers: [address]
fuzzing_engines: [libfuzzer]