Check for .git directory existence
This extension will check for an existing .git directory on your site, which is a big security leak.
Cos'è Check for .git directory existence?
Check for .git directory existence è un'estensione di Chrome sviluppata da https://jordijolink.nl, e la sua funzione principale è "This extension will check for an existing .git directory on your site, which is a big security leak.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Check for .git directory existence
Scarica i file di estensione Check for .git directory existence in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Check for .git directory existence |
ID | pfpjmdoggdcnnaifeobnkbfeglcpfkom |
URL Ufficiale | https://chromewebstore.google.com/detail/check-for-git-directory-e/pfpjmdoggdcnnaifeobnkbfeglcpfkom |
Descrizione | This extension will check for an existing .git directory on your site, which is a big security leak. |
Dimensione del File | 49.98 KB |
Conteggio Installazioni | 289 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2016-09-25 |
Data di Pubblicazione | 2016-09-25 |
Sviluppatore | https://jordijolink.nl |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.jordijolink.nl/2016/09/24/ripping-a-websites-source-files/ |
URL della Pagina di Aiuto | https://github.com/Soneritics/chrome-check-site-git-exploit |
Lingue Supportate | 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" ] } |