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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jordijolink.nl และคุณลักษณะหลักของมันคือ "This extension will check for an existing .git directory on your site, which is a big security leak."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Check for .git directory existence

ดาวน์โหลดไฟล์ส่วนขยาย Check for .git directory existence ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}