infotxt

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

infotxt là gì?

infotxt là một tiện ích mở rộng Chrome được phát triển bởi Favian Eric Raygoza, và tính năng chính của nó là "Notifies if securitytxt is present for the site you are visiting, pulls the information down, to facilitate reporting information.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng infotxt

Tải xuống các tệp mở rộng infotxt dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên infotxt infotxt
ID hkallackjojafanolhbdilpplhmiihog
URL Chính Thức https://chromewebstore.google.com/detail/infotxt/hkallackjojafanolhbdilpplhmiihog
Mô tả Notifies if securitytxt is present for the site you are visiting, pulls the information down, to facilitate reporting information.
Kích Thước Tệp 23.69 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-03-01
Ngày Phát Hành 2019-02-28
Nhà Phát Triển Favian Eric Raygoza
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://favian.me/infotxt
Ngôn Ngữ Được Hỗ Trợ 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
    }
}