CSP: form-action - HTTP 编辑

HTTP Content-Security-Policy (CSP) 的 form-action 指令能够限定当前页面中表单的提交地址。

在表单提交之后, form-action 指令是否应该阻止重定向仍有待讨论,各个浏览器对于此行为的实现也不尽相同(例如,Chrome 63会阻止重定向,而Firefox 57则不会)。

CSP version2
Directive typeNavigation directive
default-src fallbackNo. 未设定时允许任何值.

语法

form-action 策略允许设定一个或多个源:

Content-Security-Policy: form-action <source>;
Content-Security-Policy: form-action <source> <source>;

示例

meta标签配置

<meta http-equiv="Content-Security-Policy" content="form-action 'none'">

Apache服务器配置

<IfModule mod_headers.c>
Header set Content-Security-Policy "form-action 'none';
</IfModule>

Nginx配置

add_header Content-Security-Policy "form-action 'none';"

反例

<form> 元素的action设置为内联 JavaScript 会违反CSP规则。

<meta http-equiv="Content-Security-Policy" content="form-action 'none'">

<form action="javascript:alert('Foo')" id="form1" method="post">
  <input type="text" name="fieldName" value="fieldValue">
  <input type="submit" id="submit" value="submit">
</form>

// Error: Refused to send form data because it violates the following
// Content Security Policy directive: "form-action 'none'".

规范

SpecificationStatusComment
Content Security Policy Level 3
form-action
Working DraftNo changes.
Content Security Policy Level 2
form-action
RecommendationInitial definition.

浏览器兼容性

No compatibility data found. Please contribute data for "http.headers.csp.form-action" (depth: 1) to the MDN compatibility data repository.

参见

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:59 次

字数:5182

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文