fix: resolve Snyk HIGH/CRITICAL vulnerabilities in Python deps (May 2026)#95
Open
jcesarioatpeach wants to merge 1 commit intomasterfrom
Open
fix: resolve Snyk HIGH/CRITICAL vulnerabilities in Python deps (May 2026)#95jcesarioatpeach wants to merge 1 commit intomasterfrom
jcesarioatpeach wants to merge 1 commit intomasterfrom
Conversation
Upgrades: - Authlib 0.15.5 → 1.6.9 (1 CRITICAL + 6 HIGH: signature bypass, timing attack, fail-open, CSRF, DoS) - gunicorn 20.0.4 → 23.0.0 (2 HIGH: HTTP request smuggling) - PyJWT 2.4.0 → 2.12.0 (1 HIGH: improper signature verification) - sqlparse 0.4.4 → 0.5.4 (2 HIGH: uncontrolled recursion + resource exhaustion) - httplib2 0.18.0 → 0.19.0 (1 HIGH: ReDoS) - setuptools >=70.0.0 pin added (1 HIGH: code injection) Code fix: replace removed sqlparse.text_type with str in query_runner/__init__.py Werkzeug 2.3.7 HIGH (debugger RCE, debug mode only) added to .snyk ignore because Werkzeug 3.x requires Flask 3.x (incompatible with current Flask 2.3.3). Before: 0C, 16H | After: 0C, 0H (verified with snyk test --severity-threshold=high) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
setuptools>=70.0.0pin to fix code injection HIGH vuln in build toolchainsqlparse.text_type→strinredash/query_runner/__init__.py(removed in sqlparse 0.5.0)Vulnerability Summary
Snyk ignored (with justification in
.snyk):SNYK-PYTHON-WERKZEUG-6808933— debugger RCE requires debug mode enabled (never in production); fix requires Werkzeug ≥3.0.3 which is incompatible with Flask 2.3.x (requires Flask 3.x upgrade)Before / After
snyk test --severity-threshold=high→ok: true)Test Plan
snyk test --severity-threshold=high→ ok: true, 0 vulnerabilities🤖 Generated with Claude Code