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.”。
擴展截圖
下載Check for .git directory existence擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | pfpjmdoggdcnnaifeobnkbfeglcpfkom |
| 官方網址 | 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"
]
} | |