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 là gì?
Check for .git directory existence là một tiện ích mở rộng Chrome được phát triển bởi https://jordijolink.nl, và tính năng chính của nó là "This extension will check for an existing .git directory on your site, which is a big security leak.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Check for .git directory existence
Tải xuống các tệp mở rộng Check for .git directory existence dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Check for .git directory existence |
ID | pfpjmdoggdcnnaifeobnkbfeglcpfkom |
URL Chính Thức | https://chromewebstore.google.com/detail/check-for-git-directory-e/pfpjmdoggdcnnaifeobnkbfeglcpfkom |
Mô tả | This extension will check for an existing .git directory on your site, which is a big security leak. |
Kích Thước Tệp | 49.98 KB |
Số Lần Cài Đặt | 289 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2016-09-25 |
Ngày Phát Hành | 2016-09-25 |
Nhà Phát Triển | https://jordijolink.nl |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.jordijolink.nl/2016/09/24/ripping-a-websites-source-files/ |
URL Trang Trợ Giúp | https://github.com/Soneritics/chrome-check-site-git-exploit |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |