Cloudbleed Indicator

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

Was ist Cloudbleed Indicator?

Cloudbleed Indicator ist eine Chrome-Erweiterung, die von Stas Kulesh entwickelt wurde, und ihr Hauptmerkmal ist "Test any page and see if it is using CloudFlare or not. Inspired by Feb 2017 Cloudbleed security incident.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Cloudbleed Indicator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Cloudbleed Indicator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Cloudbleed Indicator Cloudbleed Indicator
ID kpemamadacmlpafjkboflojhlhcjekli
Offizielle URL https://chromewebstore.google.com/detail/cloudbleed-indicator/kpemamadacmlpafjkboflojhlhcjekli
Beschreibung Test any page and see if it is using CloudFlare or not. Inspired by Feb 2017 Cloudbleed security incident.
Dateigröße 14.23 KB
Installationsanzahl 188
Aktuelle Version 0.9
Letztes Update 2017-02-27
Veröffentlichungsdatum 2017-02-27
Bewertung 4.33/5 Insgesamt 6 Bewertungen
Entwickler Stas Kulesh
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL http://sliday.com/cloudbleed-google-chrome-extension
URL der Datenschutzrichtlinien-Seite http://sliday.com/privacy-policy
Unterstützte Sprachen 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
}