例如,当我查看https://www.facebook.com的header时,我看到它们使用了GZIP压缩内容-编码:带有SSL/TLS流量的gzip。
这不是因为违规/犯罪袭击而不是个坏主意吗?
curl -I -H 'Accept-Encoding: gzip,deflate' https://www.facebook.com
HTTP/1.1 200 OK
Pragma: no-cache
Cache-Control: private, no-cache, no-store, must-revalidate
Expires: Sat, 01 Jan 2000 00:00:00 GMT
Strict-Transport-Security: max-age=15552000; preload
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Type: text/html
Date: Fri, 15 May 2015 18:56:11 GMT
Connection: keep-alive
Content-Length: 15101
发布于 2015-05-15 22:54:17
当您有TLS + HTTP压缩(即gzip)时,就会出现漏洞。但它也要求:
评论:
https://stackoverflow.com/questions/30266931
复制相似问题