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开发的Chrome扩展程序,该扩展的主要功能是“This extension will check for an existing .git directory on your site, which is a big security leak.”。
扩展截图
下载Check for .git directory existence扩展crx文件
下载Check for .git directory existence扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } |