Check for .git directory existence
This extension will check for an existing .git directory on your site, which is a big security leak.
What is Check for .git directory existence?
Check for .git directory existence is a Chrome extension developed by https://jordijolink.nl, and its main feature is "This extension will check for an existing .git directory on your site, which is a big security leak.".
Extension Screenshots
Download Check for .git directory existence Extension CRX File
Download Check for .git directory existence extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Check for .git directory existence |
ID | pfpjmdoggdcnnaifeobnkbfeglcpfkom |
Official URL | https://chromewebstore.google.com/detail/check-for-git-directory-e/pfpjmdoggdcnnaifeobnkbfeglcpfkom |
Description | This extension will check for an existing .git directory on your site, which is a big security leak. |
File Size | 49.98 KB |
Installation Count | 289 |
Current Version | 1.2 |
Last Updated | 2016-09-25 |
Publish Date | 2016-09-25 |
Developer | https://jordijolink.nl |
[email protected] | |
Payment Type | free |
Extension Website | https://www.jordijolink.nl/2016/09/24/ripping-a-websites-source-files/ |
Help Page URL | https://github.com/Soneritics/chrome-check-site-git-exploit |
Supported Languages | 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" ] } |