Add Secret Scanning to Publish Workflow#1510
Merged
netomi merged 2 commits intoeclipse:security-improvementsfrom Jan 6, 2026
Merged
Add Secret Scanning to Publish Workflow#1510netomi merged 2 commits intoeclipse:security-improvementsfrom
netomi merged 2 commits intoeclipse:security-improvementsfrom
Conversation
04ba2f7 to
77151c6
Compare
Contributor
|
If the secret scanning service is not relevant for the specific test, I would mock the whole bean rather than setting it up for that test. This feels unnecessary and leads to duplicate work that you have to repeat if something changes. |
netomi
pushed a commit
that referenced
this pull request
Jan 7, 2026
* Add secret detection service to publish workflow * Add mockito bean for secret scanning
netomi
pushed a commit
that referenced
this pull request
Jan 29, 2026
* Add secret detection service to publish workflow * Add mockito bean for secret scanning
netomi
pushed a commit
that referenced
this pull request
Feb 5, 2026
* Add secret detection service to publish workflow * Add mockito bean for secret scanning
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add Secret Scanning to Publish Workflow
#1396
Summary
Technical Changes
Core Scanning Infrastructure
SecretScanningService,SecretScanner,SecretScannerFactory,SecretRuleLoader,SecretRule,SecretScanResult,SecretFinding,EntropyCalculator,AhoCorasickGitleaksRulesGeneratoroptionally downloads and convertsgitleaks.tomlto YAML at startupExtensionService.doPublish, failing fast with redacted findings when secrets are detectedRule Loading & Configuration
classpath:and filesystem paths with configurable load ordersecret-scanning-rules-gitleaks.yaml(optionally auto-generated) andsecret-scanning-custom-rules.yamlArchive Safety & Performance
max-entry-count: 5000)max-total-uncompressed-bytes: 100MB)isSafePath)max-file-size-bytes: 5MB)max-line-length: 10000)timeout-check-every-n-lines: 100)max-findings: 200)Architectural Decisions
SecretScannerFactoryperforms expensive one-time initialization (builds Aho-Corasick tries), produces immutableSecretScannerinstancesSecretScanningServicehandles runtime concerns (enabled check, async execution, result aggregation)Design Considerations
False-Positive Controls
secret-scanner:ignore)Performance & Safety
Resilience
ovsx.secret-scanning.enabled: falseConfiguration
Runtime Rule Generation (Optional)
Core Scanning Configuration
Secret Rule Definitions and Global Allowlists (YAML Files)