Use lwan_request_get_host() instead of the generic get_header() #84
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
name: Mayhem | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
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@v3 | |
with: | |
submodules: recursive | |
- name: Log in to the Container registry | |
uses: docker/[email protected] | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/[email protected] | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
- name: Build and push Docker image | |
uses: docker/[email protected] | |
with: | |
context: . | |
push: true | |
file: fuzz/mayhem/Dockerfile | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
outputs: | |
image: ${{ steps.meta.outputs.tags }} | |
mayhem: | |
needs: build | |
name: 'fuzz ${{ matrix.mayhemfile }}' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
mayhemfile: | |
- fuzz/mayhem/config_fuzzer.mayhemfile | |
- fuzz/mayhem/request_fuzzer.mayhemfile | |
- fuzz/mayhem/pattern_fuzzer.mayhemfile | |
- fuzz/mayhem/template_fuzzer.mayhemfile | |
- fuzz/mayhem/h2_huffman_fuzzer.mayhemfile | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Start analysis for ${{ matrix.mayhemfile }} | |
uses: ForAllSecure/mcode-action@v1 | |
with: | |
mayhem-token: ${{ secrets.MAYHEM_TOKEN }} | |
args: --image ${{ needs.build.outputs.image }} --file ${{ matrix.mayhemfile }} --duration 300 | |
sarif-output: sarif | |
- name: Upload SARIF file(s) | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: sarif |