summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <faern@faern.net>2022-02-03 16:12:30 +0100
committerEmīls <emils@mullvad.net>2022-02-04 00:28:39 +0000
commite66d3fea4e59473ea05bb098a95ed05ebad59e37 (patch)
tree053fef054f3e365715feabf9c84b4eab284537b3
parentfe486003f92ed264c788874aa1eb3bf2fd1c3077 (diff)
downloadmullvadvpn-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.md3
-rw-r--r--mullvad-cli/src/cmds/bridge.rs4
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),
),