fofa search
This is a chrome browser plug-in based on fofa to make it easy for users to quickly find information about the site.
什麼是fofa search?
fofa search是由expzhizhuo開發的Chrome擴展程式,該擴展的主要功能是“This is a chrome browser plug-in based on fofa to make it easy for users to quickly find information about the site.”。
擴展截圖
下載fofa search擴展crx文件
下載fofa search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The Fofa Search plugin for Chrome automatically checks whether Shodan has any information for the current website. Is the website also running FTP, DNS, SSH or some unusual service? With this plugin you can see all the info that Shodan has collected on a given website/ domain.
擴展基本資訊
名稱 | fofa search |
ID | jefdldfaoblleggicddaencogblfnodb |
官方網址 | https://chromewebstore.google.com/detail/fofa-search/jefdldfaoblleggicddaencogblfnodb |
簡介 | This is a chrome browser plug-in based on fofa to make it easy for users to quickly find information about the site. |
檔案大小 | 575 KB |
安裝次數 | 352 |
目前版本 | 1.1.3 |
更新時間 | 2024-01-11 |
上架時間 | 2023-02-22 |
評分 | 5.00/5 共 1 次評分 |
開發者 | expzhizhuo |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/expzhizhuo/fofa-search/ |
說明頁面URL | https://github.com/expzhizhuo/fofa-search/ |
隱私政策頁面URL | https://github.com/zhizhuoshuma/Privacy-policy |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "__MSG_extDesc__", "manifest_version": 3, "name": "__MSG_extName__", "version": "1.1.3", "default_locale": "en", "action": { "default_icon": { "16": "assets\/16.png", "48": "assets\/48.png", "128": "assets\/128.png" }, "default_popup": "popup.html", "default_title": "fofa search" }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [], "js": [ "js\/inject.js" ], "run_at": "document_end" } ], "permissions": [ "tabs", "cookies" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'", "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'" }, "web_accessible_resources": [ { "resources": [ "js\/inject.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |