Check for .git directory existence
This extension will check for an existing .git directory on your site, which is a big security leak.
Wat is Check for .git directory existence?
Check for .git directory existence is een Chrome-extensie ontwikkeld door https://jordijolink.nl, en de belangrijkste functie is "This extension will check for an existing .git directory on your site, which is a big security leak.".
Extensie Screenshots
Download het CRX-bestand van de extensie Check for .git directory existence
Download Check for .git directory existence-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | pfpjmdoggdcnnaifeobnkbfeglcpfkom |
| Officiële URL | https://chromewebstore.google.com/detail/check-for-git-directory-e/pfpjmdoggdcnnaifeobnkbfeglcpfkom |
| Beschrijving | This extension will check for an existing .git directory on your site, which is a big security leak. |
| Bestandsgrootte | 49.98 KB |
| Aantal Installaties | 289 |
| Huidige Versie | 1.2 |
| Laatst Bijgewerkt | 2016-09-25 |
| Publicatiedatum | 2016-09-25 |
| Ontwikkelaar | https://jordijolink.nl |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://www.jordijolink.nl/2016/09/24/ripping-a-websites-source-files/ |
| Help Pagina-URL | https://github.com/Soneritics/chrome-check-site-git-exploit |
| Ondersteunde Talen | 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"
]
} | |