A potentially dangerous Request.Path value was detected from the client (*)

前端 未结 8 1927
执笔经年
执笔经年 2020-11-22 12:18

I am receiving the rather self explanatory error:

A potentially dangerous Request.Path value was detected from the client (*).

T

8条回答
  •  名媛妹妹
    2020-11-22 12:48

    For me, when typing the url, a user accidentally used a / instead of a ? to start the query parameters

    e.g.:

    url.com/endpoint/parameter=SomeValue&otherparameter=Another+value

    which should have been:

    url.com/endpoint?parameter=SomeValue&otherparameter=Another+value

提交回复
热议问题