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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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
    }
}