A GitHub Action for using Mayhem for Code to check for reliability, performance and security issues in your application binary (packaged as a containerized Docker image).
π§ͺ Modern App Testing: Mayhem for Code is an application security testing tool that catches reliability, performance and security bugs before they hit production.
π§βπ» For Developers, by developers: The engineers building software are the best equipped to fix bugs, including security bugs. As engineers ourselves, we're building tools that we wish existed to make our job easier!
π€ Simple to Automate in CI: Tests belong in CI, running on every commit and PRs. We make it easy, and provide results right in your PRs where you want them. Adding Mayhem for Code to a DevOps pipeline is easy.
Want to try it? Get started for free today!
To use the Mayhem for Code GitHub Action, perform the following steps:
-
Navigate to app.mayhem.security to register an account.
-
After logging in, on the bottom left:
- Click your profile icon.
- Click Account Settings.
-
Switch to API Tokens section to access your account API token.
-
Copy and paste your Mayhem token to your repo's GitHub Secrets. You will need the following secrets configured for your repository:
MAYHEM_TOKEN
: Your Mayhem account API token.
-
-
Create a
mayhem.yml
file in your GitHub repository located at:.github/workflows/mayhem.yml
π€ Still need some help? Take a look at our working mCode Action examples at: https://github.com/forallsecure/mcode-action-examples.
Your mayhem.yml
file should look like the following:
name: Mayhem
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
jobs:
build:
name: 'build'
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@v4
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: Set lowercase image name
run: |
echo "IMAGE_NAME=${GITHUB_REPOSITORY,,}" >> ${GITHUB_ENV}
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
push: true
file: Dockerfile
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.BRANCH_NAME }}
labels: ${{ steps.meta.outputs.labels }}
outputs:
image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.BRANCH_NAME }}
mayhem:
needs: build
name: 'fuzz'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
mayhemfile:
- mayhem/Mayhemfile.lighttpd
- mayhem/Mayhemfile.mayhemit
# Specify one or many Mayhemfiles here
steps:
- uses: actions/checkout@v4
- name: Start analysis for ${{ matrix.mayhemfile }}
uses: ForAllSecure/mcode-action@v1
with:
mayhem-url: ${{ secrets.MAYHEM_URL }}
mayhem-token: ${{ secrets.MAYHEM_TOKEN }}
args: --image ${{ needs.build.outputs.image }} --file ${{ matrix.mayhemfile }} --duration 300
sarif-output: sarif
junit-output: junit
coverage-output: coverage
- name: Upload SARIF file(s)
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: sarif
- name: Archive Coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage
- name: Archive JUnit results
uses: actions/upload-artifact@v4
with:
name: mcode-junit
path: junit
- name: Upload SARIF file(s)
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: sarif
The mCode Action accepts the following inputs:
Required | Input Name | Type | Description | Default |
---|---|---|---|---|
mayhem-url |
string | Path to a custom Mayhem for Code instance. | https://app.mayhem.security | |
mayhem-token |
string | Mayhem for Code account token. Only required within mayhem.yml if overriding mayhem-url . |
||
args |
string | Additional CLI override arguments such as specifying the --testsuite directory path for a seed test suite. |
||
sarif-output |
string | Path for generating a SARIF report output file. | ||
junit-output |
string | Path for generating a jUnit report output file. | ||
coverage-output |
string | Path for generating a coverage report output files. | ||
owner |
string | The workspace for the run. | ||
project |
string | The name of the project | Defaults to the name of your repository if not defined. |
The mCode Action provides the following outputs:
Output Name | Type | Description | Default |
---|---|---|---|
runId |
string | The identifier of the run that this action triggered in Mayhem. |
π See the GitHub Action Integration docs for more information and guides on using the mCode GitHub Action!
Mayhem for Code generates SARIF reports for your application security testing results.
SARIF reports are generated using the sarif-output
parameter, which specifies an output file path.
To upload the SARIF report to GitHub, see the Upload SARIF file(s)
step in the mayhem.yml
example above.
Once uploaded to GitHub, you can view test results in the Security
tab of your repository as well as for your individual pull requests.
Fork this repository and modify the main.ts
file. Then, re-compile the mCode GitHub Action by executing the following commands at the root of your forked repository:
make dist-rebuild
Finally, push your changes and submit a pull request from your forked repository to this repository and we'll review!
ForAllSecure was founded with the mission to make the worldβs critical software safe. The company has been applying its patented technology from over a decade of CMU research to solving the difficult challenge of making software safer. ForAllSecure has partnered with Fortune 1000 companies in aerospace, automotive and high-tech industries, as well as the US Department of Defense to integrate Mayhem into software development cycles for continuous security. Profitable and revenue-funded, the company is scaling rapidly.