Add CVE-2020-9986

This commit is contained in:
Milan Stute
2021-03-03 14:49:54 +01:00
parent 50f63c8830
commit 083882a591
17 changed files with 1161 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
name: "Build CVE-2020-9986"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint-swiftlint:
runs-on: macos-latest
steps:
- name: "Checkout code"
uses: actions/checkout@v2
- name: "Run SwiftLint"
run: swiftlint --reporter github-actions-logging
build-ofreadkeys:
runs-on: macos-latest
needs: lint-swiftlint
env:
APP: OFReadKeys
PROJECT_DIR: CVE-2020-9986/OFReadKeys
defaults:
run:
working-directory: ${{ env.PROJECT_DIR }}
steps:
- name: "Checkout code"
uses: actions/checkout@v2
- name: "Select Xcode 12"
uses: devbotsxyz/xcode-select@v1
with:
version: "12"
- name: "Archive project"
run: xcodebuild archive -scheme ${APP} -configuration release -archivePath ${APP}.xcarchive
build-offetchreports:
runs-on: macos-latest
needs: lint-swiftlint
env:
APP: OFFetchReports
PROJECT_DIR: OpenHaystack
defaults:
run:
working-directory: ${{ env.PROJECT_DIR }}
steps:
- name: "Checkout code"
uses: actions/checkout@v2
- name: "Select Xcode 12"
uses: devbotsxyz/xcode-select@v1
with:
version: "12"
- name: "Archive project"
run: xcodebuild archive -scheme ${APP} -configuration release -archivePath ${APP}.xcarchive