Anomalous Outbound Calls #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |