truster

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

什麼是truster?

truster是由conand開發的Chrome擴展程式,該擴展的主要功能是“Prevent the rendered web-pages from loading resources hosted in untrusted, writable S3 buckets.”。

擴展截圖

screenshot

下載truster擴展crx文件

下載truster擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}