security: remediate 7 appsec findings in Flask wine app - #16
Draft
jefferyepayne with Copilot wants to merge 3 commits into
Draft
security: remediate 7 appsec findings in Flask wine app#16jefferyepayne with Copilot wants to merge 3 commits into
jefferyepayne with Copilot wants to merge 3 commits into
Conversation
… disable debug, add auth guard
… key, fix template indentation
Copilot
AI
changed the title
[WIP] Run AppSec scan and remediate findings
security: remediate 7 appsec findings in Flask wine app
Jun 11, 2026
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.
Ran a full appsec scan against
wine.pyand its templates. Found and patched 7 confirmed vulnerabilities spanning credential storage, session integrity, access control, and configuration hardening.Findings & patches
Critical
werkzeug.securityPBKDF2 hashing; existing DB record migrated'your_secret_key'withos.environ.get('FLASK_SECRET_KEY', os.urandom(32))High
app.debug = True→Falsepassword != confirmpwguard before INSERTMedium
/predictunauthenticated — added session guard; redirects to login if not authenticatedtype="text"— fixed inlogin.htmlandregister.htmlvalue=— removed the attribute fromprofile.htmlAdditional hardening
Closed SQLite connections explicitly after every query (login and change_password routes were leaking connections).
Example: password storage before/after
New
tests/test_security.pyadds 10 API-level tests (Flask test client + mocks) covering all 7 findings.