truster

Prevent the rendered web-pages from loading resources hosted in untrusted, writable S3 buckets.

truster क्या है?

truster conand द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Prevent the rendered web-pages from loading resources hosted in untrusted, writable S3 buckets."।

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

screenshot

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

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

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

                        Websites often load assets (CSS, JS,..) hosted in AWS S3 buckets. Unfortunately, sometimes such buckets are misconfigured allowing unauthorized users to overwrite their files. This results in the possibility for attackers to inject malicious content (for instance malicious cryptomining JS) that gets delivered to the website's visitors. To protect from this threat, truster, communicating with our backend (https://bucketsec.necst.it/), verifies if the resources requested from the visited websites come from an untrusted, writable, bucket, preventing the loading of such resources.                    

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

नाम truster truster
ID eiiilcdomkafolppehfkjdaflcblakml
आधिकारिक URL https://chromewebstore.google.com/detail/truster/eiiilcdomkafolppehfkjdaflcblakml
विवरण Prevent the rendered web-pages from loading resources hosted in untrusted, writable S3 buckets.
फ़ाइल का आकार 22.08 KB
स्थापना संख्या 2,224
वर्तमान संस्करण 0.1
अंतिम अपडेट 2018-12-22
प्रकाशन तिथि 2018-12-17
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर conand
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://bucketsec.necst.it/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "truster",
    "version": "0.1",
    "description": "Prevent the rendered web-pages from loading resources hosted in untrusted, writable S3 buckets.",
    "content_security_policy": "default-src 'self'; connect-src https:\/\/bucketsec.necst.it; style-src https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/",
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "webNavigation",
        ""
    ],
    "icons": {
        "16": "imgs\/icon_16.png",
        "32": "imgs\/icon_32.png",
        "48": "imgs\/icon_48.png",
        "128": "imgs\/icon_128.png"
    },
    "background": {
        "scripts": [
            "src\/background.js",
            "src\/sha256.min.js"
        ]
    },
    "browser_action": {
        "default_icon": "imgs\/icon_16.png",
        "default_popup": "src\/popup.html",
        "default_title": "View blocked S3 resources"
    },
    "options_ui": {
        "page": "src\/options.html",
        "open_in_tab": false
    },
    "manifest_version": 2
}