aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/security/index.html
blob: e11b90819dad0cd878efd0c23f12f856fe7402d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
title: Web 安全
slug: Web/Security
tags:
  - Web
  - 安全
translation_of: Web/Security
---
<div class="summary">
<p>确保您的 Web 站点或 Web 应用安全是十分重要的,即使是代码中很小的 bug 也可能导致隐私信息被泄露,黑客会尝试偷窃数据。这些文档提供信息帮助您使代码更安全。<span class="seoSummary">此处列出的面向 Web 安全的文章提供的信息可以帮助您保护站点及其代码免受攻击和数据窃取。</span></p>
</div>

<div class="row topicpage-table">
<div class="section">
<dl>
 <dt class="landingPageList"><a href="/zh-CN/docs/Web/Security/CSP">CSP (内容安全策略)</a></dt>
 <dd class="landingPageList"><strong>内容安全策略</strong>(CSP)是一个附加的安全层,有助于探测和减轻某些类型的攻击,包括<a href="/zh-CN/docs/Glossary/Cross-site_scripting">跨站脚本攻击(XSS)</a>和数据注入攻击。这些攻击被广泛使用,从数据窃取到网站污损亦或是恶意软件的分发。</dd>
 <dt class="landingPageList"><a href="/zh-CN/docs/Web/Security/Information_Security_Basics">信息安全基本原理</a></dt>
 <dd class="landingPageList">了解安全基本原理会帮助你理解在 web 开发生命周期中安全的角色和重要性。它将帮助你避免使用不必要的、允许攻击者利用缺陷获得经济收益或其他恶意目的非完全软件。以下文章提供了一些基本的 web 安全理论和定义。</dd>
 <dt class="landingPageList"><a href="/zh-CN/docs/Web/Security/Insecure_passwords">不安全的密码</a></dt>
 <dd class="landingPageList"><a class="external external-icon" href="https://en.wikipedia.org/wiki/HTTP_Secure">HTTPS</a> 协议旨在保护用户数据在网络上不被窃听(机密性) 和不被篡改(完整性)。处理用户数据的网站应该使用 HTTPS 协议保护他们的用户不受黑客的侵害。如果网站使用 HTTP 协议而不是 HTTPS 协议,窃取用户信息(比如他们的登录凭证)将会轻而易举。这曾经被 <a class="external external-icon" href="https://codebutler.github.io/firesheep/">Firesheep</a> 很好地演示过。</dd>
 <dt class="landingPageList"><a href="/zh-CN/docs/Web/Security/Mixed_content">混合内容</a></dt>
 <dd class="landingPageList">当用户访问通过 <a class="glossaryLink" href="/zh-CN/docs/Glossary/HTTPS" title="HTTPS: HTTPS (HTTP Secure) is an encrypted version of the HTTP protocol. It usually use SSL or TLS to encrypt all communication between a client and a server. This secure connection allows clients to safly exchange sensitive data with a server, for example for banking activities or online shopping.">HTTPS</a> 协议传输的页面时,他们与 web 服务器的连接被 <a class="glossaryLink" href="/zh-CN/docs/Glossary/TLS" title="TLS: Transport Layer Security (TLS), previously known as Secure Sockets Layer (SSL), is a protocol used by applications to communicate securely across a network, preventing tampering with and eavesdropping on email, web browsing, messaging, and other protocols.">TLS</a> 加密保护,因而免受嗅探器和中间人攻击。如果这个通过 HTTPS 访问的页面包含通过定期的明文 HTTP 获取的内容,那么该连接就只是部分加密;没有加密的内容可以被嗅探器获取、被中间人攻击篡改,因此该连接不受安全保证。当网页表现出这样的行为,就称为混合内容页面。</dd>
</dl>

<dl>
</dl>
</div>

<div class="section">
<dl>
 <dt class="landingPageList"><a href="/zh-CN/docs/Web/Security/Public_Key_Pinning">公钥固定</a></dt>
 <dd class="landingPageList"><strong>HTTP 公钥固定扩展</strong> (HPKP) 是一种安全功能,用来告诉 web 客户端与一些 web 服务器关联特定的加密公钥来阻止 <a class="external external-icon" href="https://en.wikipedia.org/wiki/Man-in-the-middle_attack">MITM</a> 伪造证书攻击。</dd>
 <dt class="landingPageList"><a href="/zh-CN/docs/Web/Security/Same-origin_policy">同源策略</a></dt>
 <dd class="landingPageList">同源策略限制了一个源(origin)中加载的文档或脚本与其他源(origin)中的资源交互的方式。这是一种用来隔离潜在恶意文档的关键安全机制。</dd>
 <dt class="landingPageList"><a href="/zh-CN/docs/Web/Security/Secure_Contexts">安全环境</a></dt>
 <dd class="landingPageList">当浏览器满足安全的最低要求时将进入一种安全环境。安全环境允许浏览器暴露那些只有在被安全地传输给用户时才被允许的 APIs。</dd>
 <dt class="landingPageList"><a href="/zh-CN/docs/Web/Security/Securing_your_site">保护你的网站</a></dt>
 <dd class="landingPageList">有很多你可以做的事情能够保护你的网站安全。本文提出了各种各样的建议,还有其他提供了更多有用信息文章的链接。</dd>
 <dt class="landingPageList"><a href="/zh-CN/docs/Web/Security/Site_Identity_Button">网站身份按钮</a></dt>
 <dd class="landingPageList">编辑审核完成。</dd>
 <dt class="landingPageList"><a href="/zh-CN/docs/Web/Security/Subresource_Integrity">子资源完整性</a></dt>
 <dd class="landingPageList">子资源完整性 (SRI) 是一种安全功能,允许浏览器验证所获取的文件 (比如,从一个 <a href="/zh-CN/docs/Glossary/CDN">CDN</a> 内容分发网络) 是无意外操作而交付的。它的工作原理是允许你提供一个获取文件必须匹配的加密哈希。</dd>
 <dt class="landingPageList"><a href="/zh-CN/docs/Web/Security/Transport_Layer_Security">传输层安全协议</a></dt>
 <dd class="landingPageList">在传输层安全协议中选择合适的密码套件和参数是必要且重要的。它有助于维护客户端和服务器之间通信的机密性和完整性。Mozilla 操作安全团队(OpSec)参考传输层安全协议配置维护着 <a class="external external-icon" href="/Security/Server_Side_TLS">一条 wiki 条目</a></dd>
 <dt class="landingPageList"><a href="/zh-CN/docs/Web/Security/Weak_Signature_Algorithm">弱签名算法</a></dt>
 <dd class="landingPageList">编辑审核完成。</dd>
</dl>
</div>
</div>

<p>{{LandingPageListSubpages}}</p>

<p>{{QuickLinksWithSubpages}}</p>