Skip to content

Commit

Permalink
Merge pull request #165 from step-security/ashishkurmi-patch-1
Browse files Browse the repository at this point in the history
Create anomalous-outbound-calls.yaml
  • Loading branch information
ashishkurmi authored Nov 21, 2023
2 parents efbdd10 + 0e1e979 commit 261092a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/anomalous-outbound-calls.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Anomalous Outbound Calls
on:
workflow_dispatch:
jobs:
unexpected-outbound-calls:
name: AnomalousOutboundCalls
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@v2
with:
egress-policy: audit
- run: "curl https://attacker.com -L || true"
- run: "curl https://google.com -L || true"
- run: "curl microsoft.com:443 --connect-timeout 5 || true"
- run: "curl amazon.com:443 --connect-timeout 5 || true"

0 comments on commit 261092a

Please sign in to comment.