From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/glossary/csrf/index.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 files/zh-cn/glossary/csrf/index.html (limited to 'files/zh-cn/glossary/csrf') diff --git a/files/zh-cn/glossary/csrf/index.html b/files/zh-cn/glossary/csrf/index.html new file mode 100644 index 0000000000..efc6079ff5 --- /dev/null +++ b/files/zh-cn/glossary/csrf/index.html @@ -0,0 +1,25 @@ +--- +title: CSRF +slug: Glossary/CSRF +tags: + - 安全 + - 术语 +translation_of: Glossary/CSRF +--- +

跨站请求伪造(CSRF)是一种冒充受信任用户,向服务器发送非预期请求的攻击方式。例如,这些非预期请求可能是通过在跳转链接后的 {{glossary("URL")}} 中加入恶意参数来完成:

+ +
<img src="https://www.example.com/index.php?action=delete&id=123">
+ +

对于在 https://www.example.com 有权限的用户,这个 <img> 标签会在他们根本注意不到的情况下对 https://www.example.com 执行这个操作,即使这个标签根本不在 https://www.example.com 内亦可。

+ +

有很多预防 CSRF 的方法,比如实现 {{glossary("REST", "RESTful API")}},增加 secure token 等等。

+ +

了解更多

+ +

公共知识

+ + -- cgit v1.2.3-54-g00ecf