We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Severity: Critical Category: Security File Path: github_app/main.py
github_app/main.py
critical
Returning an HTTPException directly without raising it will not stop the execution of the function, potentially leading to unexpected behavior.
Raise the HTTPException instead of returning it.
raise HTTPException(status_code=404, detail='Invalid Signature')
sol 1
✨ Generated with love by Kaizen ❤️
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue Details
Severity: Critical
Category: Security
File Path:
github_app/main.py
Description
critical
Impact
Returning an HTTPException directly without raising it will not stop the execution of the function, potentially leading to unexpected behavior.
Suggestion
Raise the HTTPException instead of returning it.
Code Sample
Proposed Solution
✨ Generated with love by Kaizen ❤️
The text was updated successfully, but these errors were encountered: