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.".
Снимки экрана расширения
Скачать файл 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 |
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" ] } |