2020-03-26 12:51:13 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the GNU Affero General Public License for more details:
|
|
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
#
|
|
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
|
|
#
|
|
|
|
# [This file includes modifications made by New Vector Limited]
|
2020-03-26 12:51:13 -04:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
from http import HTTPStatus
|
|
|
|
|
|
|
|
from twisted.test.proto_helpers import MemoryReactor
|
2020-03-26 12:51:13 -04:00
|
|
|
|
|
|
|
from synapse.api.constants import LoginType
|
|
|
|
from synapse.api.errors import Codes
|
|
|
|
from synapse.rest import admin
|
2021-08-17 07:57:58 -04:00
|
|
|
from synapse.rest.client import account, login, password_policy, register
|
2022-02-24 13:56:38 -05:00
|
|
|
from synapse.server import HomeServer
|
|
|
|
from synapse.util import Clock
|
2020-03-26 12:51:13 -04:00
|
|
|
|
|
|
|
from tests import unittest
|
|
|
|
|
|
|
|
|
|
|
|
class PasswordPolicyTestCase(unittest.HomeserverTestCase):
|
|
|
|
"""Tests the password policy feature and its compliance with MSC2000.
|
|
|
|
|
|
|
|
When validating a password, Synapse does the necessary checks in this order:
|
|
|
|
|
|
|
|
1. Password is long enough
|
|
|
|
2. Password contains digit(s)
|
|
|
|
3. Password contains symbol(s)
|
|
|
|
4. Password contains uppercase letter(s)
|
|
|
|
5. Password contains lowercase letter(s)
|
|
|
|
|
|
|
|
For each test below that checks whether a password triggers the right error code,
|
|
|
|
that test provides a password good enough to pass the previous tests, but not the
|
|
|
|
one it is currently testing (nor any test that comes afterward).
|
|
|
|
"""
|
|
|
|
|
|
|
|
servlets = [
|
|
|
|
admin.register_servlets_for_client_rest_resource,
|
|
|
|
login.register_servlets,
|
|
|
|
register.register_servlets,
|
|
|
|
password_policy.register_servlets,
|
|
|
|
account.register_servlets,
|
|
|
|
]
|
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
def make_homeserver(self, reactor: MemoryReactor, clock: Clock) -> HomeServer:
|
2020-03-26 12:51:13 -04:00
|
|
|
self.register_url = "/_matrix/client/r0/register"
|
|
|
|
self.policy = {
|
|
|
|
"enabled": True,
|
|
|
|
"minimum_length": 10,
|
|
|
|
"require_digit": True,
|
|
|
|
"require_symbol": True,
|
|
|
|
"require_lowercase": True,
|
|
|
|
"require_uppercase": True,
|
|
|
|
}
|
|
|
|
|
|
|
|
config = self.default_config()
|
|
|
|
config["password_config"] = {
|
|
|
|
"policy": self.policy,
|
|
|
|
}
|
|
|
|
|
|
|
|
hs = self.setup_test_homeserver(config=config)
|
|
|
|
return hs
|
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
def test_get_policy(self) -> None:
|
2020-03-26 12:51:13 -04:00
|
|
|
"""Tests if the /password_policy endpoint returns the configured policy."""
|
|
|
|
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request("GET", "/_matrix/client/r0/password_policy")
|
2020-03-26 12:51:13 -04:00
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
self.assertEqual(channel.code, HTTPStatus.OK, channel.result)
|
2020-03-26 12:51:13 -04:00
|
|
|
self.assertEqual(
|
|
|
|
channel.json_body,
|
|
|
|
{
|
|
|
|
"m.minimum_length": 10,
|
|
|
|
"m.require_digit": True,
|
|
|
|
"m.require_symbol": True,
|
|
|
|
"m.require_lowercase": True,
|
|
|
|
"m.require_uppercase": True,
|
|
|
|
},
|
|
|
|
channel.result,
|
|
|
|
)
|
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
def test_password_too_short(self) -> None:
|
2022-07-17 17:28:45 -04:00
|
|
|
request_data = {"username": "kermit", "password": "shorty"}
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request("POST", self.register_url, request_data)
|
2020-03-26 12:51:13 -04:00
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
self.assertEqual(channel.code, HTTPStatus.BAD_REQUEST, channel.result)
|
2020-03-26 12:51:13 -04:00
|
|
|
self.assertEqual(
|
|
|
|
channel.json_body["errcode"],
|
|
|
|
Codes.PASSWORD_TOO_SHORT,
|
|
|
|
channel.result,
|
|
|
|
)
|
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
def test_password_no_digit(self) -> None:
|
2022-07-17 17:28:45 -04:00
|
|
|
request_data = {"username": "kermit", "password": "longerpassword"}
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request("POST", self.register_url, request_data)
|
2020-03-26 12:51:13 -04:00
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
self.assertEqual(channel.code, HTTPStatus.BAD_REQUEST, channel.result)
|
2020-03-26 12:51:13 -04:00
|
|
|
self.assertEqual(
|
|
|
|
channel.json_body["errcode"],
|
|
|
|
Codes.PASSWORD_NO_DIGIT,
|
|
|
|
channel.result,
|
|
|
|
)
|
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
def test_password_no_symbol(self) -> None:
|
2022-07-17 17:28:45 -04:00
|
|
|
request_data = {"username": "kermit", "password": "l0ngerpassword"}
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request("POST", self.register_url, request_data)
|
2020-03-26 12:51:13 -04:00
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
self.assertEqual(channel.code, HTTPStatus.BAD_REQUEST, channel.result)
|
2020-03-26 12:51:13 -04:00
|
|
|
self.assertEqual(
|
|
|
|
channel.json_body["errcode"],
|
|
|
|
Codes.PASSWORD_NO_SYMBOL,
|
|
|
|
channel.result,
|
|
|
|
)
|
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
def test_password_no_uppercase(self) -> None:
|
2022-07-17 17:28:45 -04:00
|
|
|
request_data = {"username": "kermit", "password": "l0ngerpassword!"}
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request("POST", self.register_url, request_data)
|
2020-03-26 12:51:13 -04:00
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
self.assertEqual(channel.code, HTTPStatus.BAD_REQUEST, channel.result)
|
2020-03-26 12:51:13 -04:00
|
|
|
self.assertEqual(
|
|
|
|
channel.json_body["errcode"],
|
|
|
|
Codes.PASSWORD_NO_UPPERCASE,
|
|
|
|
channel.result,
|
|
|
|
)
|
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
def test_password_no_lowercase(self) -> None:
|
2022-07-17 17:28:45 -04:00
|
|
|
request_data = {"username": "kermit", "password": "L0NGERPASSWORD!"}
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request("POST", self.register_url, request_data)
|
2020-03-26 12:51:13 -04:00
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
self.assertEqual(channel.code, HTTPStatus.BAD_REQUEST, channel.result)
|
2020-03-26 12:51:13 -04:00
|
|
|
self.assertEqual(
|
|
|
|
channel.json_body["errcode"],
|
|
|
|
Codes.PASSWORD_NO_LOWERCASE,
|
|
|
|
channel.result,
|
|
|
|
)
|
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
def test_password_compliant(self) -> None:
|
2022-07-17 17:28:45 -04:00
|
|
|
request_data = {"username": "kermit", "password": "L0ngerpassword!"}
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request("POST", self.register_url, request_data)
|
2020-03-26 12:51:13 -04:00
|
|
|
|
|
|
|
# Getting a 401 here means the password has passed validation and the server has
|
|
|
|
# responded with a list of registration flows.
|
2022-02-24 13:56:38 -05:00
|
|
|
self.assertEqual(channel.code, HTTPStatus.UNAUTHORIZED, channel.result)
|
2020-03-26 12:51:13 -04:00
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
def test_password_change(self) -> None:
|
2020-03-26 12:51:13 -04:00
|
|
|
"""This doesn't test every possible use case, only that hitting /account/password
|
|
|
|
triggers the password validation code.
|
|
|
|
"""
|
|
|
|
compliant_password = "C0mpl!antpassword"
|
|
|
|
not_compliant_password = "notcompliantpassword"
|
|
|
|
|
|
|
|
user_id = self.register_user("kermit", compliant_password)
|
|
|
|
tok = self.login("kermit", compliant_password)
|
|
|
|
|
2022-07-17 17:28:45 -04:00
|
|
|
request_data = {
|
|
|
|
"new_password": not_compliant_password,
|
|
|
|
"auth": {
|
|
|
|
"password": compliant_password,
|
|
|
|
"type": LoginType.PASSWORD,
|
|
|
|
"user": user_id,
|
|
|
|
},
|
|
|
|
}
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request(
|
2020-03-26 12:51:13 -04:00
|
|
|
"POST",
|
|
|
|
"/_matrix/client/r0/account/password",
|
|
|
|
request_data,
|
|
|
|
access_token=tok,
|
|
|
|
)
|
|
|
|
|
2022-02-24 13:56:38 -05:00
|
|
|
self.assertEqual(channel.code, HTTPStatus.BAD_REQUEST, channel.result)
|
2020-03-26 12:51:13 -04:00
|
|
|
self.assertEqual(channel.json_body["errcode"], Codes.PASSWORD_NO_DIGIT)
|