Dot Phishing Protector
This extension protects yourself against punycode domains phishing attacks.
Qu'est-ce que Dot Phishing Protector ?
Dot Phishing Protector est une extension Chrome développée par Roger Salgado, et sa fonction principale est "This extension protects yourself against punycode domains phishing attacks.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Dot Phishing Protector
Téléchargez les fichiers d'extension Dot Phishing Protector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Dot Phishing Protector |
ID | plhkgdgglhonnlckmigoohlmghiiepdo |
URL Officiel | https://chromewebstore.google.com/detail/dot-phishing-protector/plhkgdgglhonnlckmigoohlmghiiepdo |
Description | This extension protects yourself against punycode domains phishing attacks. |
Taille du Fichier | 8.17 KB |
Nombre d'Installations | 27 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2018-01-19 |
Date de Publication | 2018-01-19 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Roger Salgado |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |