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 |
| 公式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 |
| Eメール | [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"
]
} | |