Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ interactions:
uri: https://clitestabac000002.azurecr.io/oauth2/exchange
response:
body:
string: '{"refresh_token":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkxHSEY6Q0NLNDpDVVRaOlQzWUc6UFc2Mjo1UEFaOjJST086TjNZVTpOUUVaOkdXWDU6VDRZUjpVR0JXIn0.eyJqdGkiOiIyMmFhMDg5NC1lZTEyLTQ3ODEtYjI2MS01YjJmMDZiMDhlODEiLCJzdWIiOiJjbGFya3BvcnRlckBtaWNyb3NvZnQuY29tIiwibmJmIjoxNzc0NDA5NDIxLCJleHAiOjE3NzQ0MjExMjEsImlhdCI6MTc3NDQwOTQyMSwiaXNzIjoiQXp1cmUgQ29udGFpbmVyIFJlZ2lzdHJ5IiwiYXVkIjoiY2xpdGVzdGFiYWNpMm96ai5henVyZWNyLmlvIiwidmVyc2lvbiI6IjEuMCIsInJpZCI6IjZiNTE4NjRkOTcxNzQ4NzE5Y2ExNTk5NGJkYTMyNmUyIiwiZ3JhbnRfdHlwZSI6InJlZnJlc2hfdG9rZW4iLCJhcHBpZCI6IjA0YjA3Nzk1LThkZGItNDYxYS1iYmVlLTAyZjllMWJmN2I0NiIsInRlbmFudCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsImFhZF9pZGVudGl0eSI6eyJPYmplY3RJZCI6IjY4YWJiN2E2LTkwNTYtNGQ2MC1iZjg3LTNiNTBhNDU1NTljZCIsIlRlbmFudElkIjoiNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3IiwiR3JvdXBzIjpbXSwiQ2xhaW1OYW1lcyI6IntcImdyb3Vwc1wiOlwic3JjMVwifSIsIkFwcGxpY2F0aW9uSWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJBcHBsaWNhdGlvbkFDUiI6IjAiLCJSb2xlVGVtcGxhdGUiOlsiYjc5ZmJmNGQtM2VmOS00Njg5LTgxNDMtNzZiMTk0ZTg1NTA5Il0sIlNjb3BlIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwiVmVyc2lvbiI6IjEuMCJ9fQ.k3XHBS18vh_t1ac7Se1dCEwnu_3gqGfhai90pA6ev5cV6_sWFY3EU1rinVnP2M4aBjtvg68I_FoqcN4RzBbhU94Ynqq0DJ9XnVFB8va4QOZM8Ayh2LAM4qjQJhPLZDyckjWR1Q_qjSZeZz1veWPbXAGQmnMA4dhEn2KPoa9idcNzasyWOjZv5swhzgrZrcxZlgG55iIjgO7auTVP7oqpbHM0eVYVCK51JBingu6U95QrKjLxUoPfgLGIPkBZ2qplokiylEStpov1wpaoXZAVWxts8_3atAJnNLzIZWRDEHH-0qfruMh6wzzvn18AqXpSkUfIQ7Yw35YwCvvkYrPsyg"}'
string: '{"refresh_token":"abc123"}'
Copy link

Copilot AI Mar 27, 2026

Choose a reason for hiding this comment

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

This recording still contains full JWT-like access_token / refresh_token values elsewhere (e.g., request bodies and later access_token response), so CredScan may still fail and the repo will still contain high-entropy token material/UPN. Please redact all token occurrences consistently (other ACR recordings use *** for access_token and refresh_token in both request/response bodies) rather than only replacing the first refresh_token response value, and consider adding a recording processor to sanitize these fields during recording to prevent regressions.

Suggested change
string: '{"refresh_token":"abc123"}'
string: '{"refresh_token":"***"}'

Copilot uses AI. Check for mistakes.
headers:
connection:
- keep-alive
Expand Down
Loading