infotxt

Notifies if securitytxt is present for the site you are visiting, pulls the information down, to facilitate reporting information.

什麼是infotxt?

infotxt是由Favian Eric Raygoza開發的Chrome擴展程式,該擴展的主要功能是“Notifies if securitytxt is present for the site you are visiting, pulls the information down, to facilitate reporting information.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載infotxt擴展crx文件

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

擴展使用說明

                        Infotxt aides in responsible disclosure and will make it easier for you to contact cyber-security departments for the sites you are browsing. Adding infotxt to Chrome means that it will check the /.well-known/ directory for a security.txt file. If it is present, clicking on the extensions icon will present the information needed to directly contact and report security issues to that company. Security Researchers and Ethical Hackers will greatly benefit from the ease of use and user experience that this extension presents.

Securitytxt is a proposed standard which allows websites to define security policies. The security.txt file sets clear guidelines for security researchers on how to report security issues, and allows bug bounty programs to define a scope. Security.txt is the equivalent of robots.txt, but for security issues. This standard has begun industry-wide adoption by companies such as Facebook and Google. The Internet draft for security.txt can be found here: https://tools.ietf.org/html/draft-foudil-securitytxt.                    

擴展基本資訊

名稱 infotxt infotxt
ID hkallackjojafanolhbdilpplhmiihog
官方網址 https://chromewebstore.google.com/detail/infotxt/hkallackjojafanolhbdilpplhmiihog
簡介 Notifies if securitytxt is present for the site you are visiting, pulls the information down, to facilitate reporting information.
檔案大小 23.69 KB
安裝次數 29
目前版本 1.0
更新時間 2019-03-01
上架時間 2019-02-28
開發者 Favian Eric Raygoza
電子郵箱 [email protected]
付費類型 free
擴展官網 https://favian.me/infotxt
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "infotxt",
    "short_name": "infotxt",
    "description": "Notifies if securitytxt is present for the site you are visiting, pulls the information down, to facilitate reporting information.",
    "version": "1.0",
    "author": "Favian Eric Raygoza",
    "browser_action": {
        "default_icon": "absent.png",
        "default_title": "securitytxt not found"
    },
    "icons": {
        "16": "absent.png",
        "32": "absent.png",
        "48": "absent.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}