Restrict sanitization to only allow 0-9, a-z, _, -, .
Co-authored-by: TingluoHuang <[email protected]>
This commit is contained in:
co-authored by
TingluoHuang
parent
af6de2cb95
commit
2215c8e5aa
@@ -821,9 +821,9 @@ export class HttpClient {
|
|||||||
private _getUserAgentWithOrchestrationId(userAgent: string): string {
|
private _getUserAgentWithOrchestrationId(userAgent: string): string {
|
||||||
const orchId = process.env['ACTIONS_ORCHESTRATION_ID']
|
const orchId = process.env['ACTIONS_ORCHESTRATION_ID']
|
||||||
if (orchId) {
|
if (orchId) {
|
||||||
// Sanitize the orchestration ID to ensure it contains only valid token characters
|
// Sanitize the orchestration ID to ensure it contains only valid characters
|
||||||
// Valid characters: alphanumeric, !, #, $, %, &, ', *, +, -, ., ^, _, `, |, ~
|
// Valid characters: 0-9, a-z, _, -, .
|
||||||
const sanitizedId = orchId.replace(/[^a-zA-Z0-9!#$%&'*+.^_`|~-]/g, '_')
|
const sanitizedId = orchId.replace(/[^a-z0-9_.\-]/gi, '_')
|
||||||
return `${userAgent} actions_orchestration_id/${sanitizedId}`
|
return `${userAgent} actions_orchestration_id/${sanitizedId}`
|
||||||
}
|
}
|
||||||
return userAgent
|
return userAgent
|
||||||
|
|||||||
Reference in New Issue
Block a user