1
0
mirror of synced 2025-12-23 21:07:12 -05:00

Add "multi-part secrets" section to "Supported secret scanning patterns" article (#57088)

Co-authored-by: Ben Ahmady <32935794+subatoi@users.noreply.github.com>
Co-authored-by: Erin Havens <erinhav@github.com>
This commit is contained in:
Anne-Marie
2025-09-10 09:42:27 +01:00
committed by GitHub
parent 270fc3bf8e
commit f449146926
4 changed files with 17 additions and 0 deletions

View File

@@ -199,6 +199,7 @@
isPrivateWithGhas: true
hasPushProtection: true
hasValidityCheck: '{% ifversion fpt or ghes %}false{% else %}true{% endif %}'
ismultipart: true
base64Supported: false
isduplicate: false
- provider: Amazon AWS

View File

@@ -46,6 +46,9 @@ export default async function secretScanning(
if (entry.isduplicate) {
entry.secretType += ' <br/><a href="#token-versions">Token versions</a>'
}
if (entry.ismultipart) {
entry.secretType += ' <br/><a href="#multi-part-secrets">Multi-part secrets</a>'
}
})
return next()

View File

@@ -311,6 +311,7 @@ export type SecretScanningData = {
isPrivateWithGhas: boolean
hasPushProtection: boolean
hasValidityCheck: boolean | string
ismultipart?: boolean
base64Supported: boolean
isduplicate: boolean
}