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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Stas Kulesh, και η κύρια λειτουργία του είναι "Test any page and see if it is using CloudFlare or not. Inspired by Feb 2017 Cloudbleed security incident.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Cloudbleed Indicator

Λήψη αρχείων επέκτασης 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
Επίσημο 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
}