Cloudbleed Indicator

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

Cloudbleed Indicator là gì?

Cloudbleed Indicator là một tiện ích mở rộng Chrome được phát triển bởi Stas Kulesh, và tính năng chính của nó là "Test any page and see if it is using CloudFlare or not. Inspired by Feb 2017 Cloudbleed security incident.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cloudbleed Indicator

Tải xuống các tệp mở rộng Cloudbleed Indicator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cloudbleed Indicator Cloudbleed Indicator
ID kpemamadacmlpafjkboflojhlhcjekli
URL Chính Thức https://chromewebstore.google.com/detail/cloudbleed-indicator/kpemamadacmlpafjkboflojhlhcjekli
Mô tả Test any page and see if it is using CloudFlare or not. Inspired by Feb 2017 Cloudbleed security incident.
Kích Thước Tệp 14.23 KB
Số Lần Cài Đặt 188
Phiên Bản Hiện Tại 0.9
Cập Nhật Lần Cuối 2017-02-27
Ngày Phát Hành 2017-02-27
Đánh Giá 4.33/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Stas Kulesh
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp http://sliday.com/cloudbleed-google-chrome-extension
URL Trang Chính Sách Bảo Mật http://sliday.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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
}