Check for .git directory existence
This extension will check for an existing .git directory on your site, which is a big security leak.
Co to jest Check for .git directory existence?
Check for .git directory existence to rozszerzenie Chrome opracowane przez https://jordijolink.nl, a jego główną funkcją jest „This extension will check for an existing .git directory on your site, which is a big security leak.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Check for .git directory existence
Pobierz pliki rozszerzeń Check for .git directory existence w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Check for .git directory existence |
ID | pfpjmdoggdcnnaifeobnkbfeglcpfkom |
Oficjalny URL | https://chromewebstore.google.com/detail/check-for-git-directory-e/pfpjmdoggdcnnaifeobnkbfeglcpfkom |
Opis | This extension will check for an existing .git directory on your site, which is a big security leak. |
Rozmiar pliku | 49.98 KB |
Liczba instalacji | 289 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2016-09-25 |
Data Publikacji | 2016-09-25 |
Deweloper | https://jordijolink.nl |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.jordijolink.nl/2016/09/24/ripping-a-websites-source-files/ |
Adres URL Strony Pomocy | https://github.com/Soneritics/chrome-check-site-git-exploit |
Obsługiwane Języki | 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" ] } |