Opener Detector

Checks for window.opener vulnerabilities as you browse.

Opener Detector क्या है?

Opener Detector Harry Cutts द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Checks for window.opener vulnerabilities as you browse."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Opener Detector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A simple browser extension which checks for window.opener vulnerabilities as you browse. When it finds one, it shows a warning page in the vulnerable tab, so that you can report or fix the vulnerability. (Use the back button to return to the page.) Individual pages and whole domains can be added to an ignore list, and by default, vulnerabilities between pages of the same origin (e.g. https://example.com/foo.html and https://example.com/bar.html) are not reported, though this can be changed in the settings.

window.opener vulnerabilities allow Web pages to control the tab which opened them. They can be fixed on many browsers simply by adding rel=noopener to your links. For more details, check out Mathias Bynens' article (https://mathiasbynens.github.io/rel-noopener/).

Please use responsibly. Disclose vulnerabilities you find, or fix them. Keep your hat white.

Source code is available on GitHub (https://github.com/HarryCutts/opener-detector), under the 3-clause BSD license. Contributions welcome!                    

एक्सटेंशन की मूल जानकारी

नाम Opener Detector Opener Detector
ID glgmjdmfggnngmedfgccfdbhdjlfafin
आधिकारिक URL https://chromewebstore.google.com/detail/opener-detector/glgmjdmfggnngmedfgccfdbhdjlfafin
विवरण Checks for window.opener vulnerabilities as you browse.
फ़ाइल का आकार 29.94 KB
स्थापना संख्या 77
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2017-09-04
प्रकाशन तिथि 2017-09-03
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Harry Cutts
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Opener Detector",
    "version": "1.0.0",
    "description": "Checks for window.opener vulnerabilities as you browse.",
    "homepage_url": "https:\/\/github.com\/HarryCutts\/opener-detector",
    "icons": {
        "48": "icons\/icon.png",
        "96": "icons\/[email protected]"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/browser-polyfill.min.js",
                "config.js",
                "check.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "vuln_report_page.html"
    ]
}