增加请求阶段 DNS 解析校验,阻断重绑定到私网 补充默认透传 WWW-Authenticate 头,保留认证挑战 前端相对 URL 过滤拒绝 // 协议相对路径 测试: go test ./internal/repository -run TestGitHubReleaseServiceSuite 测试: go test ./internal/repository -run TestTurnstileServiceSuite 测试: go test ./internal/repository -run TestProxyProbeServiceSuite 测试: go test ./internal/repository -run TestClaudeUsageServiceSuite
38 lines
987 B
TypeScript
38 lines
987 B
TypeScript
/**
|
||
* 验证并规范化 URL
|
||
* 默认只接受绝对 URL(以 http:// 或 https:// 开头),可按需允许相对路径
|
||
* @param value 用户输入的 URL
|
||
* @returns 规范化后的 URL,如果无效则返回空字符串
|
||
*/
|
||
type SanitizeOptions = {
|
||
allowRelative?: boolean
|
||
}
|
||
|
||
export function sanitizeUrl(value: string, options: SanitizeOptions = {}): string {
|
||
const trimmed = value.trim()
|
||
if (!trimmed) {
|
||
return ''
|
||
}
|
||
|
||
if (options.allowRelative && trimmed.startsWith('/') && !trimmed.startsWith('//')) {
|
||
return trimmed
|
||
}
|
||
|
||
// 只接受绝对 URL,不使用 base URL 来避免相对路径被解析为当前域名
|
||
// 检查是否以 http:// 或 https:// 开头
|
||
if (!trimmed.match(/^https?:\/\//i)) {
|
||
return ''
|
||
}
|
||
|
||
try {
|
||
const parsed = new URL(trimmed)
|
||
const protocol = parsed.protocol.toLowerCase()
|
||
if (protocol !== 'http:' && protocol !== 'https:') {
|
||
return ''
|
||
}
|
||
return parsed.toString()
|
||
} catch {
|
||
return ''
|
||
}
|
||
}
|