Check for .git directory existence
This extension will check for an existing .git directory on your site, which is a big security leak.
Hvad er Check for .git directory existence?
Check for .git directory existence er en Chrome-udvidelse udviklet af https://jordijolink.nl, og dens hovedfunktion er "This extension will check for an existing .git directory on your site, which is a big security leak.".
Udvidelsesskærmbilleder
Download Check for .git directory existence-udvidelses-CRX-fil
Download Check for .git directory existence-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | pfpjmdoggdcnnaifeobnkbfeglcpfkom |
| Officiel URL | https://chromewebstore.google.com/detail/check-for-git-directory-e/pfpjmdoggdcnnaifeobnkbfeglcpfkom |
| Beskrivelse | This extension will check for an existing .git directory on your site, which is a big security leak. |
| Filstørrelse | 49.98 KB |
| Antal Installationer | 289 |
| Nuværende Version | 1.2 |
| Senest Opdateret | 2016-09-25 |
| Udgivelsesdato | 2016-09-25 |
| Udvikler | https://jordijolink.nl |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://www.jordijolink.nl/2016/09/24/ripping-a-websites-source-files/ |
| Hjælpeside-URL | https://github.com/Soneritics/chrome-check-site-git-exploit |
| Understøttede Sprog | 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"
]
} | |