Fix CVE-2026-9648: require crypton-x509-validation >= 1.9.1#205
Merged
Conversation
Versions of crypton-x509-validation before 1.9.1 fail to enforce X.509 NameConstraints (CWE-295), letting a name-constrained sub-CA issue certs for domains outside its permitted subtree. PureMyHA uses this library for MySQL TLS certificate validation (verify-ca and verify-full modes), so it was exposed to MITM/impersonation. Bump the lower bound to the patched release. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #205 +/- ##
=======================================
Coverage 97.18% 97.18%
=======================================
Files 50 50
Lines 8175 8175
=======================================
Hits 7945 7945
Misses 230 230 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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.
Summary
crypton-x509-validationinsrc/PureMyHA/MySQL/TLS.hs.>= 1.6lower bound permitted resolving a vulnerable version. Bumped to>= 1.9.1(the patched release).skip-verify/disabledmodes do not perform validation and are unaffected (they already emit a startup WARN).Test plan
cabal updatethencabal build allresolvescrypton-x509-validation-1.9.1and links cleanly.cabal testpasses (51/51).verify-ca/verify-full) still connects against the test MySQL container.🤖 Generated with Claude Code