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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة 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"
    ]
}