infotxt

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

¿Qué es infotxt?

infotxt es una extensión de Chrome desarrollada por Favian Eric Raygoza, y su función principal es "Notifies if securitytxt is present for the site you are visiting, pulls the information down, to facilitate reporting information.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión infotxt

Descarga archivos de extensión infotxt en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre infotxt infotxt
ID hkallackjojafanolhbdilpplhmiihog
URL Oficial https://chromewebstore.google.com/detail/infotxt/hkallackjojafanolhbdilpplhmiihog
Descripción Notifies if securitytxt is present for the site you are visiting, pulls the information down, to facilitate reporting information.
Tamaño del Archivo 23.69 KB
Cantidad de Instalaciones 29
Versión Actual 1.0
Última Actualización 2019-03-01
Fecha de Publicación 2019-02-28
Desarrollador Favian Eric Raygoza
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://favian.me/infotxt
Idiomas Soportados 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
    }
}