Check for .git directory existence
This extension will check for an existing .git directory on your site, which is a big security leak.
Check for .git directory existence क्या है?
Check for .git directory existence https://jordijolink.nl द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will check for an existing .git directory on your site, which is a big security leak."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Check for .git directory existence एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Check for .git directory existence |
ID | pfpjmdoggdcnnaifeobnkbfeglcpfkom |
आधिकारिक URL | https://chromewebstore.google.com/detail/check-for-git-directory-e/pfpjmdoggdcnnaifeobnkbfeglcpfkom |
विवरण | This extension will check for an existing .git directory on your site, which is a big security leak. |
फ़ाइल का आकार | 49.98 KB |
स्थापना संख्या | 289 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2016-09-25 |
प्रकाशन तिथि | 2016-09-25 |
डेवलपर | https://jordijolink.nl |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.jordijolink.nl/2016/09/24/ripping-a-websites-source-files/ |
सहायता पृष्ठ URL | https://github.com/Soneritics/chrome-check-site-git-exploit |
समर्थित भाषाएँ | 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" ] } |