Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Instrumentation.Http][Instrumentation.AspNetCore] Fix url.full and url.query attribute values #5532

Merged

Conversation

vishweshbankwar
Copy link
Member

@vishweshbankwar vishweshbankwar commented Apr 12, 2024

Fixes #
Design discussion issue #

Changes

Fixed tracing instrumentation so that by default any values detected in the query string component of requests are replaced with the text Redacted. For ASP.NET Core instrumentation, fixed url.query attribute. For Http instrumentation, fixed url.full attribute.

Merge requirement checklist

  • CONTRIBUTING guidelines followed (license requirements, nullable enabled, static analysis, etc.)
  • Unit tests added/updated
  • Appropriate CHANGELOG.md files updated for non-trivial changes
  • Changes in public API reviewed (if applicable)

Copy link

codecov bot commented Apr 12, 2024

Codecov Report

Attention: Patch coverage is 86.20690% with 4 lines in your changes are missing coverage. Please review.

Project coverage is 20.07%. Comparing base (6250307) to head (e2d1d7e).
Report is 177 commits behind head on main.

❗ Current head e2d1d7e differs from pull request most recent head b6fde65. Consider uploading reports for the commit b6fde65 to get more accurate results

Additional details and impacted files

Impacted file tree graph

@@             Coverage Diff             @@
##             main    #5532       +/-   ##
===========================================
- Coverage   83.38%   20.07%   -63.31%     
===========================================
  Files         297      183      -114     
  Lines       12531     7610     -4921     
===========================================
- Hits        10449     1528     -8921     
- Misses       2082     6082     +4000     
Flag Coverage Δ
unittests ?
unittests-Instrumentation-Experimental 20.08% <86.20%> (?)
unittests-Instrumentation-Stable 18.35% <86.20%> (?)

Flags with carried forward coverage won't be shown. Click here to find out more.

Files Coverage Δ
...spNetCore/AspNetCoreTraceInstrumentationOptions.cs 100.00% <100.00%> (ø)
...tation.AspNetCore/Implementation/HttpInListener.cs 89.93% <100.00%> (+0.34%) ⬆️
...tInstrumentationTracerProviderBuilderExtensions.cs 100.00% <100.00%> (ø)
...tp/Implementation/HttpHandlerDiagnosticListener.cs 70.63% <100.00%> (-0.24%) ⬇️
...strumentation.Http/Implementation/HttpTagHelper.cs 75.00% <100.00%> (+2.27%) ⬆️
...tion.Http/HttpClientTraceInstrumentationOptions.cs 78.12% <80.00%> (-21.88%) ⬇️
...p/Implementation/HttpInstrumentationEventSource.cs 58.82% <50.00%> (-11.18%) ⬇️

... and 252 files with indirect coverage changes

@CodeBlanch CodeBlanch marked this pull request as ready for review April 12, 2024 18:47
@CodeBlanch CodeBlanch requested a review from a team April 12, 2024 18:47
Copy link
Member

@CodeBlanch CodeBlanch left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@CodeBlanch CodeBlanch merged commit e222ecb into open-telemetry:main Apr 12, 2024
50 checks passed
@CodeBlanch CodeBlanch added this to the 1.8.1 milestone Apr 12, 2024
@julealgon
Copy link

Can someone elaborate where this requirement came from? Is it part of the OTEL Spec?


Released 2024-Apr-12

* **Breaking Change**: Fixed tracing instrumentation so that by default any
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changelog is not very clear. Could we make it clear the why here as well?
Also, using the word "tag" may not be obvious that it is referring to "attributes".

@CodeBlanch
Copy link
Member

Apologies for not providing much detail on here. We wanted to have the mitigation in place before we provided a whole lot of information about a vulnerability. See: GHSA-vh2m-22xx-q94f

@julealgon
Copy link

Thanks for sharing that @CodeBlanch , but that feels overly defensive to me. Does the OTEL spec ask implementations to perform this redaction, or is the .NET team doing it on their own?

Using query string for sensitive information such as tokens is such a well-known bad practice for this precise reason, so I don't quite understand why the library would decide to redact all query string values by default.

What if people just share sensitive information as URL segments, then? Is the library going to start redacting route segments in the URL too?

This will just make debugging harder by default. It would made a lot more sense if the framework allowed redaction to be plugged-in instead and let consumers decide whether they need it or not, which is exactly what happens today with standard logs as well.

If there is a known practice to redact query string values everywhere I'm not aware about, please share that so I can learn from it.

On an unrelated note, it also makes me a bid sad this is not tapping into Microsoft.Extensions.Compliance.Redaction. If not even Microsoft dogfeeds on its own base libraries, it becomes even harder to get those libraries to be adopted by the community and get feedback etc.

@SaifAqqad
Copy link

Redacting all query parameters by default makes zero sense to me.

query parameters should not be used for sensitive info regardless of whether they're going to be redacted in logs and traces.

@reyang
Copy link
Member

reyang commented Apr 25, 2024

Related to open-telemetry/semantic-conventions#961.

@julealgon
Copy link

Related to open-telemetry/semantic-conventions#961.

Sad to see this being forced into the convention as well.

Oh well... at least now we are in a better position to disable the behavior across all of our services in a single place. That wasn't the case a couple weeks ago.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants