Skip to content

Instantly share code, notes, and snippets.

@effigies
Created May 20, 2015 13:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save effigies/9055df837f1f996e4015 to your computer and use it in GitHub Desktop.
Save effigies/9055df837f1f996e4015 to your computer and use it in GitHub Desktop.
Chromium blacklist
#!/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