Check for .git directory existence
This extension will check for an existing .git directory on your site, which is a big security leak.
Co je Check for .git directory existence?
Check for .git directory existence je rozšíření Chrome vyvinuté https://jordijolink.nl, a jeho hlavní funkcí je „This extension will check for an existing .git directory on your site, which is a big security leak.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Check for .git directory existence
Stáhněte si soubory rozšíření Check for .git directory existence ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Check for .git directory existence |
ID | pfpjmdoggdcnnaifeobnkbfeglcpfkom |
Oficiální URL | https://chromewebstore.google.com/detail/check-for-git-directory-e/pfpjmdoggdcnnaifeobnkbfeglcpfkom |
Popis | This extension will check for an existing .git directory on your site, which is a big security leak. |
Velikost souboru | 49.98 KB |
Počet instalací | 289 |
Aktuální Verze | 1.2 |
Poslední Aktualizace | 2016-09-25 |
Datum Vydání | 2016-09-25 |
Vývojář | https://jordijolink.nl |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://www.jordijolink.nl/2016/09/24/ripping-a-websites-source-files/ |
URL Stránky Nápovědy | https://github.com/Soneritics/chrome-check-site-git-exploit |
Podporované Jazyky | 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" ] } |