Check for .git directory existence

This extension will check for an existing .git directory on your site, which is a big security leak.

Check for .git directory existence란 무엇입니까?

Check for .git directory existence은(는) https://jordijolink.nl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will check for an existing .git directory on your site, which is a big security leak."입니다.

확장 프로그램 스크린샷

screenshot

Check for .git directory existence 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Check a website for having the .git directory public accessible.

This is a huge security issue, as all source files can be downloaded.
For more information see: https://www.jordijolink.nl/2016/09/24/ripping-a-websites-source-files/

This plugin can detect this security leak on (your) websites.                    

확장 프로그램 기본 정보

이름 Check for .git directory existence Check for .git directory existence
ID pfpjmdoggdcnnaifeobnkbfeglcpfkom
공식 URL https://chromewebstore.google.com/detail/check-for-git-directory-e/pfpjmdoggdcnnaifeobnkbfeglcpfkom
설명 This extension will check for an existing .git directory on your site, which is a big security leak.
파일 크기 49.98 KB
설치 횟수 289
현재 버전 1.2
최근 업데이트 2016-09-25
출시 날짜 2016-09-25
개발자 https://jordijolink.nl
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.jordijolink.nl/2016/09/24/ripping-a-websites-source-files/
도움말 페이지 URL https://github.com/Soneritics/chrome-check-site-git-exploit
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Check for .git directory existence",
    "short_name": "Check .git existence",
    "description": "This extension will check for an existing .git directory on your site, which is a big security leak.",
    "version": "1.2",
    "author": "Jordi Jolink",
    "homepage_url": "https:\/\/www.jordijolink.nl\/",
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/configs.js",
                "js\/gitUrl.js",
                "js\/scanner.js",
                "js\/popup.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}