Skip to content

Commit

Permalink
python: fixup, test
Browse files Browse the repository at this point in the history
  • Loading branch information
yoff committed Sep 17, 2024
1 parent fb56e2b commit 9e17962
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def get(self, name = "World!", number="0", foo="foo"): # $ requestHandler route
request.headers["header-name"], # $ tainted
request.headers.get_list("header-name"), # $ tainted
request.headers.get_all(), # $ tainted
[(k, v) for (k, v) in request.headers.get_all()], # $ tainted
[(k, v) for (k, v) in request.headers.get_all()], # $ MISSING: tainted

# Dict[str, http.cookies.Morsel]
request.cookies, # $ tainted
Expand Down

0 comments on commit 9e17962

Please sign in to comment.