Cloudbleed Indicator

Test any page and see if it is using CloudFlare or not. Inspired by Feb 2017 Cloudbleed security incident.

什麼是Cloudbleed Indicator?

Cloudbleed Indicator是由Stas Kulesh開發的Chrome擴展程式,該擴展的主要功能是“Test any page and see if it is using CloudFlare or not. Inspired by Feb 2017 Cloudbleed security incident.”。

擴展截圖

screenshot
screenshot
screenshot

下載Cloudbleed Indicator擴展crx文件

下載Cloudbleed Indicator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Featured at Product Hunt: https://www.producthunt.com/posts/cloudbleed-indicator-for-chrome

Cloudbleed Indicator does not fix the issue, it recognises it using Google Public DNS (DNS-over-HTTPS).

If the cloud icon is bleeding, you might consider:
- changing your password,
- using 2-step verification (if available),
- leaving the site altogether.

Cloudbleed (also known as CloudLeak and CloudFlare Bug) is a security bug discovered on February 17, 2017 affecting Cloudflare's reverse proxies, which caused their edge servers to run past the end of a buffer and return memory that contained private information such as HTTP cookies, authentication tokens, HTTP POST bodies, and other sensitive data. Some of this data was cached by search engines.                    

擴展基本資訊

名稱 Cloudbleed Indicator Cloudbleed Indicator
ID kpemamadacmlpafjkboflojhlhcjekli
官方網址 https://chromewebstore.google.com/detail/cloudbleed-indicator/kpemamadacmlpafjkboflojhlhcjekli
簡介 Test any page and see if it is using CloudFlare or not. Inspired by Feb 2017 Cloudbleed security incident.
檔案大小 14.23 KB
安裝次數 188
目前版本 0.9
更新時間 2017-02-27
上架時間 2017-02-27
評分 4.33/5 共 6 次評分
開發者 Stas Kulesh
電子郵箱 [email protected]
付費類型 free
說明頁面URL http://sliday.com/cloudbleed-google-chrome-extension
隱私政策頁面URL http://sliday.com/privacy-policy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cloudbleed Indicator",
    "version": "0.9",
    "description": "Test any page and see if it is using CloudFlare or not. Inspired by Feb 2017 Cloudbleed security incident.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "cf-no.png",
        "default_title": "This website is NOT using CloudFlare. You're most likely safe."
    },
    "permissions": [
        "https:\/\/dns.google.com\/"
    ],
    "icons": {
        "256": "cf-bleed.png"
    },
    "manifest_version": 2
}