diff options
| author | Linus Färnstrand <faern@faern.net> | 2022-02-03 16:12:30 +0100 |
|---|---|---|
| committer | Emīls <emils@mullvad.net> | 2022-02-04 00:28:39 +0000 |
| commit | e66d3fea4e59473ea05bb098a95ed05ebad59e37 (patch) | |
| tree | 053fef054f3e365715feabf9c84b4eab284537b3 | |
| parent | fe486003f92ed264c788874aa1eb3bf2fd1c3077 (diff) | |
| download | mullvadvpn-e66d3fea4e59473ea05bb098a95ed05ebad59e37.tar.xz mullvadvpn-e66d3fea4e59473ea05bb098a95ed05ebad59e37.zip | |
Update the default password and cipher for the custom bridges
We recently changed the cipher from chacha20 -> aes-256-gcm
and the password from 23#dfsbbb to mullvad
on port 443 on all our shadowsocks bridges
| -rw-r--r-- | CHANGELOG.md | 3 | ||||
| -rw-r--r-- | mullvad-cli/src/cmds/bridge.rs | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index c33f98c1ef..0fca108527 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,6 +42,9 @@ Line wrap the file at 100 chars. Th - Stop preferring OpenVPN when bridge mode is enabled. - CLI command for setting a specific server by hostname is no longer case sensitive. Example: `mullvad relay set hostname SE9-WIREGUARD` should now work. +- Update the default Shadowsocks password to `mullvad` and cipher to `aes-256-gcm` in the CLI + when using it to configure a *custom Shadowsocks bridge*. The Mullvad bridges recently changed + these parameters on port 443 (which is the default port). #### Windows - Update wireguard-nt to 0.10.1. diff --git a/mullvad-cli/src/cmds/bridge.rs b/mullvad-cli/src/cmds/bridge.rs index f2442ea857..3267ec3541 100644 --- a/mullvad-cli/src/cmds/bridge.rs +++ b/mullvad-cli/src/cmds/bridge.rs @@ -155,13 +155,13 @@ fn create_set_custom_settings_subcommand() -> clap::App<'static, 'static> { .arg( clap::Arg::with_name("password") .help("Specifies the password on the remote Shadowsocks server") - .default_value("23#dfsbbb") + .default_value("mullvad") .index(3), ) .arg( clap::Arg::with_name("cipher") .help("Specifies the cipher to use") - .default_value("chacha20") + .default_value("aes-256-gcm") .possible_values(SHADOWSOCKS_CIPHERS) .index(4), ), |
