truster

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

Was ist truster?

truster ist eine Chrome-Erweiterung, die von conand entwickelt wurde, und ihr Hauptmerkmal ist "Prevent the rendered web-pages from loading resources hosted in untrusted, writable S3 buckets.".

Erweiterungsscreenshots

screenshot

truster-Erweiterungs-CRX-Datei herunterladen

Laden Sie truster-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name truster truster
ID eiiilcdomkafolppehfkjdaflcblakml
Offizielle URL https://chromewebstore.google.com/detail/truster/eiiilcdomkafolppehfkjdaflcblakml
Beschreibung Prevent the rendered web-pages from loading resources hosted in untrusted, writable S3 buckets.
Dateigröße 22.08 KB
Installationsanzahl 2,224
Aktuelle Version 0.1
Letztes Update 2018-12-22
Veröffentlichungsdatum 2018-12-17
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler conand
Zahlungsart free
Erweiterungswebsite https://bucketsec.necst.it/
Unterstützte Sprachen 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
}