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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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
}