Created
May 20, 2015 13:41
-
-
Save effigies/9055df837f1f996e4015 to your computer and use it in GitHub Desktop.
Chromium blacklist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# /etc/chromium-browser/default | |
# | |
# Default settings for chromium-browser. This file is sourced by /bin/sh from | |
# /usr/bin/chromium-browser | |
# Options to pass to chromium-browser | |
MIN_SSL="tls1" | |
RC4="0x0004,0x0005,0xc007,0xc011" | |
DSS="0x0032" | |
DES="0x000a" | |
DHE="0x0033,0x0039,0x009e" | |
BLACKLIST="$RC4,$DSS,$DES,$DHE" | |
CHROMIUM_FLAGS="--ssl-version-min=$MIN_SSL --cipher-suite-blacklist=$BLACKLIST" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment