Closed joshuap closed 4 years ago
A customer mentioned that the following params are not being filtered:
My flask app receives some sensitive information in request's form data: {"thing": {"password": "xxx"}}
My flask app receives some sensitive information in request's form data:
{"thing": {"password": "xxx"}}
@demsullivan could we support this?
Here's a sample test that the customer sent:
self.app.test_request_context(path='/test', base_url='http://server:1234/path', method='POST', data={'request': json.dumps({'thing': {'password': 'xxx'}})}):`
A customer mentioned that the following params are not being filtered:
@demsullivan could we support this?