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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Test any page and see if it is using CloudFlare or not. Inspired by Feb 2017 Cloudbleed security incident."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Cloudbleed Indicator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 } |