KB SSL Enforcer

Automatic security, browse encrypted.

KB SSL Enforcer란 무엇입니까?

KB SSL Enforcer은(는) https://kbit.dk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatic security, browse encrypted."입니다.

확장 프로그램 스크린샷

screenshot

KB SSL Enforcer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 KB SSL Enforcer KB SSL Enforcer
ID flcpelgcagfhfoegekianiofphddckof
공식 URL https://chromewebstore.google.com/detail/kb-ssl-enforcer/flcpelgcagfhfoegekianiofphddckof
설명 Automatic security, browse encrypted.
파일 크기 49.2 KB
설치 횟수 20,000
현재 버전 2.0.5
최근 업데이트 2020-11-21
출시 날짜 2016-11-11
평점 4.18/5 총 290 개의 평점
개발자 https://kbit.dk
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kbitdk/kbsslenforcer
도움말 페이지 URL https://github.com/kbitdk/kbsslenforcer/issues
개인정보 보호 정책 페이지 URL https://github.com/kbitdk/kbsslenforcer/blob/master/FAQ.md
지원되는 언어 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"
        ]
    }
}