A potentially dangerous Request.Form value was detected from the client

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A potentially dangerous Request.Form value was detected from the client相关的知识,希望对你有一定的参考价值。

今天在做ckeditor时遇到这个问题

用户在页面上提交表单到服务器时,服务器会检测到一些潜在的输入风险,例如使用富文本编辑器控件(RichTextBox、FreeTextBox、CuteEditor等)编辑的内容中包含有html标记或脚本标记,ASP.NET页面会抛出一个"A potentially dangerous Request.Form value was deceted from the client"的异常。这个是ASP.NET页面为了防范页面注入功能的一种保护机制,要取消这种保护,常规的做法是在.aspx文件的<%@Page %>部分加入ValidateRequest="false"属性。但是从.NET 4.0开始你可能需要多修改一个地方,在网站的web.config文件中加入这行配置:

<system.web>
    <compilation debug="true" targetFramework="4.0"/>
    <httpRuntime requestValidationMode="2.0"/>
</system.web>

 同时,你还需要确保页面上用户输入的部分不会存在任何注入攻击的代码,常用的做法是使用Encode处理。

以上是关于A potentially dangerous Request.Form value was detected from the client的主要内容,如果未能解决你的问题,请参考以下文章

lightoj 1027 A Dangerous Maze 期望

A request has been denied as a potential CSRF attack错误解决方法

1149 Dangerous Goods Packaging (25分)

CodeForces 1131G. Most Dangerous Shark

dwr的A request has been denied as a potential CSRF attack.错误

pat 1149 Dangerous Goods Packaging(25 分)