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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |