KissPeter / APIFuzzer

Fuzz test your application using your OpenAPI or Swagger API definition without coding
GNU General Public License v3.0
416 stars 65 forks source link

Add request url to reports #25

Closed lobax closed 4 years ago

lobax commented 4 years ago

Partial fix for #24

KissPeter commented 4 years ago

Thanks for the PR. I'm a bit concerned because it may contains non utf8 chars for instance in the query string or path which is added to the report without any encoding. Have you tested this? Péter

lobax commented 4 years ago

I have tested it with the test setup. It encodes the URL as Base64, so it shouldn't be any more dangerous than adding the body.

KissPeter commented 4 years ago

Thanks