Skip to content
New issue

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

fix: skipped content type validation for GET requests #28

Merged
merged 4 commits into from
Oct 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jwt_signature_validator/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.0.4"
VERSION = "0.0.5"
6 changes: 5 additions & 1 deletion jwt_signature_validator/encoded_payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def __init__(
self.protect_hosts = protect_hosts
self.jwt_secret = jwt_secret
self.jwt_algorithms = jwt_algorithms
self.validate_request_types = ["POST", "PUT", "DELETE"]
if not self.protect_hosts:
self.protect_hosts = ["*"]

Expand Down Expand Up @@ -84,7 +85,10 @@ async def verify_signature():
return {"type": receive_["type"], "body": signature, "more_body": False}

headers = MutableHeaders(scope=scope)
if headers.get("Content-Type") is None:
if (
headers.get("Content-Type") is None
and scope.get("method", "POST") in self.validate_request_types
):
raise HTTPException(status_code=406, detail="Unacceptable Content Type!")
elif headers.get("Content-Type") == "application/json":
host = headers.get("host", "").split(":")[0]
Expand Down