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 /mullvad-cli/src/cmds/bridge.rs | |
| 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
Diffstat (limited to 'mullvad-cli/src/cmds/bridge.rs')
| -rw-r--r-- | mullvad-cli/src/cmds/bridge.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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), ), |
