-
Notifications
You must be signed in to change notification settings - Fork 20
Add h2o cve #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Add h2o cve #2
Changes from 12 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
7336e67
Add basic h2o mayhem target
sciencemanx d1ab6b2
Add remaining fuzz targets to h2o
sciencemanx c4e07c0
Add base image name and fix standalone cmd path
sciencemanx 439d55d
Remove alternate fuzzers (just keep h2o binary)
sciencemanx 1a8c4f2
Add starting corpus and crashing poc
sciencemanx 0bf53fd
Simplify dockerfile
sciencemanx 90c3578
Add readme for h2o
sciencemanx 54eea77
Use multistage build for docker image
sciencemanx 8675655
Change mayhemfile baseimage to use forallsecure dockerhub
sciencemanx cd708a5
Move push logic from docker_publish to external script in .github
sciencemanx 9228e5e
Add h2o cve to docker_publish.yml
sciencemanx eb47ebe
Add shebang and set ex to push.sh
sciencemanx d9f1113
Remove now-unused modified CMakeLists.txt
sciencemanx 5db463b
Fix indentation in docker_publish
sciencemanx b18d3ee
Remove unnecessary env specification in mayhemfile
sciencemanx 4519c28
Update ubuntu base image to specify version tag
sciencemanx 86d82b5
Improve readme intro with more detail (thanks david)
sciencemanx be1fadc
Add credit to Marlies Ruck to readme
sciencemanx 597a7d3
Update note markdown to match formatting
sciencemanx 1adb6e3
Remove envtest string from project name in mayhemfile
sciencemanx 65d4fd9
Merge branch 'master' into add-h2o-cve
sciencemanx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,24 @@ | ||
| #! /bin/bash | ||
| # Pushes image to logged in docker registry (tagged with github ref) | ||
|
|
||
| set -xe | ||
|
|
||
| IMAGE_ID=$1 | ||
|
|
||
| # Change all uppercase to lowercase | ||
| IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') | ||
|
|
||
| # Strip git ref prefix from version | ||
| VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') | ||
|
|
||
| # Strip "v" prefix from tag name | ||
| [[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') | ||
|
|
||
| # Use docker `latest` tag convention | ||
| [ "$VERSION" == "master" ] && VERSION=latest | ||
|
|
||
| echo IMAGE_ID=$IMAGE_ID | ||
| echo VERSION=$VERSION | ||
|
|
||
| docker tag $IMAGE_ID $IMAGE_ID:$VERSION | ||
| docker push $IMAGE_ID:$VERSION | ||
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.