Files
wehub-resource-sync 48b3ccf279
gitleaks / gitleaks (push) Has been skipped
Test / test (ubuntu-latest) (push) Failing after 0s
Test / test (windows-latest) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:12:29 +08:00

33 lines
1.2 KiB
Go

package rules
import (
"github.com/zricethezav/gitleaks/v8/cmd/generate/config/utils"
"github.com/zricethezav/gitleaks/v8/cmd/generate/secrets"
"github.com/zricethezav/gitleaks/v8/config"
)
func OctopusDeployApiKey() *config.Rule {
// define rule
r := config.Rule{
RuleID: "octopus-deploy-api-key",
Description: "Discovered a potential Octopus Deploy API key, risking application deployments and operational security.",
Regex: utils.GenerateUniqueTokenRegex(`API-[A-Z0-9]{26}`, false),
Entropy: 3,
Keywords: []string{"api-"},
}
// validate
tps := []string{
utils.GenerateSampleSecret("octopus", secrets.NewSecret(`API-[A-Z0-9]{26}`)),
`set apikey="API-ZNRMR7SL6L3ATMOIK7GKJDKLPY"`, // gitleaks:allow
}
fps := []string{
// Invalid start
`msgstr "GSSAPI-VIRHEKAPSELOINTIMERKKIJONO."`,
`https://sonarcloud.io/api/project_badges/measure?project=Garden-Coin_API-CalculadoraDeInvestimentos&metric=alert_status`,
`https://fog-ringer-f42.notion.site/API-BD80F56CDC1441E6BF6011AB6D852875`, // Invalid end
`<iframe src="./archive/gifs/api-c99e353f761d318322c853c03e.gif"> </iframe>`, // Wrong case
}
return utils.Validate(r, tps, fps)
}