KB SSL Enforcer

Automatic security, browse encrypted.

O que é KB SSL Enforcer?

KB SSL Enforcer é uma extensão do Chrome desenvolvida por https://kbit.dk, e sua principal característica é "Automatic security, browse encrypted.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão KB SSL Enforcer

Baixe arquivos de extensão KB SSL Enforcer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        This extension enforces encryption for websites that support it as much as currently possible in Chrome. This gives you added security and privacy for your browsing automatically and transparently. This is particularly important on insecure networks, such as public wifi in e.g. coffee shops and hotels.

It is not completely secure against the infamous Firesheep, but it does minimize the risk greatly. See the section on complete enforcement for technical details and more on when this will be possible.

Features:
- Automatically detects if a site supports SSL (TLS) and enforces all subsequent requests to be over SSL
- As soon as a domain is set to be enforce, the browser will not send any unencrypted requests for that domain (unless the site deliberately enforces not using encryption, see the section on complete enforcement)
- Flexible options for overriding the auto-detection
- Caches which sites support SSL (respects incognito mode)
- Open source (GPLv2 or later)

Changelog:
https://github.com/kbitdk/kbsslenforcer/blob/master/Changelog.md

Issue tracker:
https://github.com/kbitdk/kbsslenforcer/issues

Complete enforcement:
Due to Chrome limitations KB SSL Enforcer detects SSL on the very first visit to a page and is unable to block the unencrypted request from going through while this is happening. It will let that page load and if it is detected to support SSL, all subsequent requests to that domain will be enforced automatically to use SSL before the unencrypted request is sent from the browser.

The unencrypted request only goes through on the very first page visit where it's detecting SSL support. The setting will be saved and survives reboots and all. The only way to stop enforcing SSL is to manually set it to ignore SSL on that domain or if the extension detects that the site is trying to enforce an unencrypted connection and therefore backs off by not enforcing it from then on.

This first insecure request could send a cookie in the clear, which would give anyone with tools like Firesheep an opportunity to use your account on that site. But this only happens if they catch it during that first request and if it includes sensitive information, such as your logged in session. All subsequent requests, even after restarting the browser and rebooting the computer, will enforce encryption.

Permissions:
The manifest file states the permissions requested:
https://github.com/kbitdk/kbsslenforcer/blob/master/chrome%20extension/manifest.json
 * *://*/
  * This is for accessing pages on all domains and both with and without SSL
 * tabs
  * This is for accessing information on whether a tab is in incognito, so it can be respected
 * webRequest
  * This is for intercepting the unencrypted requests and detecting whether the site doesn't support encryption by redirecting encrypted requests to the unencrypted site
 * webRequestBlocking
  * This is for blocking the unencrypted requests while determining whether it needs to be redirected

The project is open source and any scrutiny of the code or the extension's behavior is encouraged. If you have any comments, please open an issue on the issue tracker:
https://github.com/kbitdk/kbsslenforcer/issues

Feedback:
Any questions or feedback are welcome in the issue tracker linked above, which has features to manage and notify people of any issues, so they can be fixed and we can all have a better extension. Please keep the user reviews section of this page to just reviews. Thanks.

Developed by KB IT:
https://kbit.dk                    

Informações Básicas da Extensão

Nome KB SSL Enforcer KB SSL Enforcer
ID flcpelgcagfhfoegekianiofphddckof
URL Oficial https://chromewebstore.google.com/detail/kb-ssl-enforcer/flcpelgcagfhfoegekianiofphddckof
Descrição Automatic security, browse encrypted.
Tamanho do Arquivo 49.2 KB
Contagem de Instalações 20,000
Versão Atual 2.0.5
Última Atualização 2020-11-21
Data de Publicação 2016-11-11
Classificação 4.18/5 Total de 290 Avaliações
Desenvolvedor https://kbit.dk
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/kbitdk/kbsslenforcer
URL da Página de Ajuda https://github.com/kbitdk/kbsslenforcer/issues
URL da Página de Política de Privacidade https://github.com/kbitdk/kbsslenforcer/blob/master/FAQ.md
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "KB SSL Enforcer",
    "version": "2.0.5",
    "description": "Automatic security, browse encrypted.",
    "manifest_version": 2,
    "permissions": [
        "*:\/\/*\/",
        "tabs",
        "webRequest",
        "webRequestBlocking"
    ],
    "icons": {
        "128": "icon.png"
    },
    "options_page": "options.html",
    "minimum_chrome_version": "17",
    "browser_action": {
        "default_icon": "icon19.png",
        "default_title": "KB SSL Enforcer",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}