Add Windows Memory Search support using regex #51
Workflow file for this run
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: WindowsMeterpreter | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions | |
permissions: | |
actions: none | |
checks: none | |
contents: none | |
deployments: none | |
id-token: none | |
issues: none | |
discussions: none | |
packages: none | |
pages: none | |
pull-requests: none | |
repository-projects: none | |
security-events: none | |
statuses: none | |
on: | |
push: | |
paths: | |
- 'c/**' | |
pull_request: | |
paths: | |
- 'c/**' | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
timeout-minutes: 40 | |
name: Meterpreter MinGW Docker Build | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Compile | |
run: | | |
cd c/meterpreter | |
script --return --command 'make docker' |