@@ -81,25 +81,25 @@ async def test_taint(request: web.Request): # $ requestHandler
8181 request .if_unmodified_since , # $ tainted
8282 request .if_range , # $ tainted
8383
84- request .clone (scheme = "https" ), # $ MISSING: tainted
84+ request .clone (scheme = "https" ), # $ tainted
8585
8686 # TODO: like request.transport.get_extra_info
87- request .get_extra_info ("key" ), # $ MISSING: tainted
87+ request .get_extra_info ("key" ), # $ tainted
8888
8989 # bytes
90- await request .read (), # $ MISSING: tainted
90+ await request .read (), # $ tainted
9191
9292 # str
93- await request .text (), # $ MISSING: tainted
93+ await request .text (), # $ tainted
9494
9595 # obj
96- await request .json (), # $ MISSING: tainted
96+ await request .json (), # $ tainted
9797
9898 # aiohttp.multipart.MultipartReader
99- await request .multipart (), # $ MISSING: tainted
99+ await request .multipart (), # $ tainted
100100
101101 # multidict.MultiDictProxy[str]
102- await request .post (), # $ MISSING: tainted
102+ await request .post (), # $ tainted
103103 (await request .post ()).getone ("key" ), # $ MISSING: tainted
104104 )
105105
0 commit comments