.NET: Add CodeQL suppression for DevUI proxy validation - #7505
Merged
SergeyMenshykh merged 1 commit intoAug 5, 2026
Merged
Conversation
SergeyMenshykh
temporarily deployed
to
github-app-auth
August 4, 2026 14:44 — with
GitHub Actions
Inactive
SergeyMenshykh
temporarily deployed
to
github-app-auth
August 4, 2026 14:44 — with
GitHub Actions
Inactive
SergeyMenshykh
temporarily deployed
to
github-app-auth
August 4, 2026 14:44 — with
GitHub Actions
Inactive
SergeyMenshykh
temporarily deployed
to
integration
August 4, 2026 14:44 — with
GitHub Actions
Inactive
SergeyMenshykh
temporarily deployed
to
integration
August 4, 2026 14:44 — with
GitHub Actions
Inactive
Contributor
There was a problem hiding this comment.
Pull request overview
Adds an inline CodeQL suppression to document why a reported proxy/taint finding is a false positive in the DevUI aggregator proxy path, based on existing target URI validation.
Changes:
- Adds an inline
CodeQL [SM03781]suppression comment on the outboundHttpClient.SendAsynccall in the DevUI aggregator proxy.
SergeyMenshykh
force-pushed
the
fix-codeql-devui-proxy-alert
branch
from
August 4, 2026 15:03
c600e74 to
2e62413
Compare
SergeyMenshykh
temporarily deployed
to
github-app-auth
August 4, 2026 15:04 — with
GitHub Actions
Inactive
SergeyMenshykh
had a problem deploying
to
integration
August 4, 2026 15:04 — with
GitHub Actions
Error
SergeyMenshykh
had a problem deploying
to
integration
August 4, 2026 15:04 — with
GitHub Actions
Error
The proxy target validation in ValidateProxyTarget already ensures requests stay on the configured backend. Add an inline suppression comment following the repo's established pattern. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4363ab44-4d9e-41a0-97d3-4ab0b973f0b2
SergeyMenshykh
force-pushed
the
fix-codeql-devui-proxy-alert
branch
from
August 4, 2026 15:04
2e62413 to
40b299e
Compare
SergeyMenshykh
temporarily deployed
to
github-app-auth
August 4, 2026 15:04 — with
GitHub Actions
Inactive
SergeyMenshykh
temporarily deployed
to
integration
August 4, 2026 15:05 — with
GitHub Actions
Inactive
SergeyMenshykh
temporarily deployed
to
integration
August 4, 2026 15:05 — with
GitHub Actions
Inactive
peibekwe
approved these changes
Aug 4, 2026
SergeyMenshykh
enabled auto-merge
August 4, 2026 19:13
westey-m
approved these changes
Aug 5, 2026
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.
Adds an inline CodeQL suppression comment for the DevUI aggregator proxy. The proxy target is already validated by
ValidateProxyTargetwhich ensures requests cannot leave the configured backend (host, scheme, and port are verified). The suppression documents this justification following the repo's established pattern.