Dot Phishing Protector

This extension protects yourself against punycode domains phishing attacks.

¿Qué es Dot Phishing Protector?

Dot Phishing Protector es una extensión de Chrome desarrollada por Roger Salgado, y su función principal es "This extension protects yourself against punycode domains phishing attacks.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Dot Phishing Protector

Descarga archivos de extensión Dot Phishing Protector en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Dot Phishing Protector Dot Phishing Protector
ID plhkgdgglhonnlckmigoohlmghiiepdo
URL Oficial https://chromewebstore.google.com/detail/dot-phishing-protector/plhkgdgglhonnlckmigoohlmghiiepdo
Descripción This extension protects yourself against punycode domains phishing attacks.
Tamaño del Archivo 8.17 KB
Cantidad de Instalaciones 27
Versión Actual 1.0.1
Última Actualización 2018-01-19
Fecha de Publicación 2018-01-19
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Roger Salgado
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}