forked from google/libprotobuf-mutator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f95f80
commit 8b0d42a
Showing
8 changed files
with
187 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Mayhem | ||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
workflow_call: | ||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
jobs: | ||
build: | ||
name: ${{ matrix.os }} shared=${{ matrix.shared }} ${{ matrix.build_type }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
shared: [false] | ||
build_type: [Release] | ||
include: | ||
- os: ubuntu-latest | ||
triplet: x64-linux | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- name: Log in to the Container registry | ||
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
- name: Build and push Docker image | ||
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc | ||
with: | ||
context: . | ||
file: mayhem/Dockerfile | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
- name: Start analysis | ||
uses: forallsecure/mcode-action@v1 | ||
with: | ||
mayhem-token: ${{ secrets.MAYHEM_TOKEN }} | ||
args: --image ${{ steps.meta.outputs.tags }} --cmd /out/expat_example --target | ||
expat_example --file mayhem/expat_example.mayhemfile | ||
sarif-output: sarif | ||
- name: Upload SARIF file(s) | ||
uses: github/codeql-action/upload-sarif@v2 | ||
with: | ||
sarif_file: sarif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Copyright 2017 Google Inc. | ||
# | ||
# 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 | ||
RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config cmake ninja-build liblzma-dev libz-dev docbook2x | ||
|
||
COPY . libprotobuf-mutator | ||
RUN rm -rf libprotobuf-mutator/mayhem | ||
WORKDIR libprotobuf-mutator | ||
|
||
COPY mayhem/build.sh mayhem/*.dict mayhem/*.options $SRC/ | ||
|
||
ENV FUZZING_LANGUAGE=c++ | ||
RUN compile |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/bash -eu | ||
# | ||
# Copyright 2017 Google Inc. | ||
# | ||
# 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. | ||
# | ||
################################################################################ | ||
|
||
cp -f $SRC/*.dict $SRC/*.options $OUT/ | ||
|
||
mkdir -p build | ||
pushd build | ||
rm -rf * | ||
cmake .. -GNinja -DCMAKE_BUILD_TYPE=Release \ | ||
-DLIB_PROTO_MUTATOR_DOWNLOAD_PROTOBUF=ON \ | ||
-DLIB_PROTO_MUTATOR_FUZZER_LIBRARIES=FuzzingEngine | ||
ninja libxml2_example expat_example | ||
cp -f examples/libxml2/libxml2_example $OUT/ | ||
cp -f examples/expat/expat_example $OUT/ | ||
popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
project: PROJECT | ||
target: expat_example | ||
cmds: | ||
- cmd: /out/expat_example |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[libfuzzer] | ||
dict = xml.dict | ||
max_len=1024 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[libfuzzer] | ||
dict = xml.dict | ||
max_len=1000 | ||
detect_leaks=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# Copyright 2017 Google Inc. | ||
# | ||
# 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. | ||
# | ||
################################################################################ | ||
|
||
"" | ||
"" | ||
"&a;" | ||
"<" | ||
"1.0" | ||
"ANY" | ||
"ATTLIST" | ||
"CDATA" | ||
"DOCTYPE" | ||
"EBCDIC" | ||
"ELEMENT" | ||
"EMPTY" | ||
"ENTITIES" | ||
"ENTITY" | ||
"FIXED" | ||
"ID" | ||
"IDREF" | ||
"IDREFS" | ||
"IGNORE" | ||
"IMPLIED" | ||
"INCLUDE" | ||
"ISO-8859-1" | ||
"NDATA" | ||
"NMTOKENS" | ||
"NOTATION" | ||
"PCDATA" | ||
"PUBLIC" | ||
"REQUIRED" | ||
"SYSTEM" | ||
"UCS-4" | ||
"US-ASCII" | ||
"UTF-16" | ||
"UTF-16BE" | ||
"UTF-16LE" | ||
"UTF-8" | ||
"\"http://www.w3.org/1999/xhtml\"" | ||
"\"http://www.w3.org/2000/xmlns\"" | ||
"\"http://www.w3.org/XML/1998/namespace\"" | ||
"fallback" | ||
"http://" | ||
"https://" | ||
"include" | ||
"schema" | ||
"xml" | ||
"xml:lang" | ||
"xml:space" | ||
"xmlns" | ||
"xmlns:" |