Dot Phishing Protector
This extension protects yourself against punycode domains phishing attacks.
什么是Dot Phishing Protector?
Dot Phishing Protector是由Roger Salgado开发的Chrome扩展程序,该扩展的主要功能是“This extension protects yourself against punycode domains phishing attacks.”。
扩展截图
下载Dot Phishing Protector扩展crx文件
下载Dot Phishing Protector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension protects yourself against punycode domains phishing attacks that try to impersonate well known sites (including most banks online) by replacing some letters with the same character with a small dot bellow, that most people ignore/don't notice it. In a real phishing attack (using this method), the little dot may be confused with a dead pixel or some dust on the screen. As an example you may consider the following domain: http://www.xn--goldmasachs-1x8e.com/ Despict the small do bellow the lowercase N character, it might be easily confused with: http://www.goldmansachs.com/ This extension will provide a warning dialog every time the browser tries to open Urls domains that are punycode encoded, which may be used to trick the user.
扩展基本信息
名称 | Dot Phishing Protector |
ID | plhkgdgglhonnlckmigoohlmghiiepdo |
官方URL | https://chromewebstore.google.com/detail/dot-phishing-protector/plhkgdgglhonnlckmigoohlmghiiepdo |
简介 | This extension protects yourself against punycode domains phishing attacks. |
文件大小 | 8.17 KB |
安装次数 | 27 |
当前版本 | 1.0.1 |
更新时间 | 2018-01-19 |
上架时间 | 2018-01-19 |
评分 | 5.00/5 共1次评分 |
开发者 | Roger Salgado |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dot Phishing Protector", "description": "This extension protects yourself against punycode domains phishing attacks.", "author": "Roger Salgado ([email protected])", "version": "1.0.1", "manifest_version": 2, "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ] } ], "permissions": [ "tabs" ] } |