forked from Github-Mirrors/canaille
replaces 'pwned' by 'compromised'
This commit is contained in:
parent
56f0c9b51b
commit
289176a086
3 changed files with 3 additions and 3 deletions
|
@ -30,7 +30,7 @@
|
|||
<p>
|
||||
{% trans %}You have to check manually if the new password of the user {{ user_name }} is compromised.{% endtrans %}</br>
|
||||
{% trans %}Follow this steps : {% endtrans %}</br>
|
||||
{% trans %}1. click on the link above "Check if password is pwned"{% endtrans %}</br>
|
||||
{% trans %}1. click on the link above "Check if password is compromised".{% endtrans %}</br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
{% trans %}You have to check manually if the new password of the user {{ user_name }} is compromised.{% endtrans %}
|
||||
{% trans %}Follow this steps : {% endtrans %}
|
||||
{% trans %}1. click on the link above "Check if password is pwned"{% endtrans %}
|
||||
{% trans %}1. click on the link above "Check if password is compromised".{% endtrans %}
|
||||
{% trans %}2. in the page that will open, search the following hashed password in the page : {{ hashed_password }}{% endtrans %}
|
||||
{% trans %}3. if the password is in the list :{% endtrans %}
|
||||
{% trans %}3.1. open this link http://127.0.0.1:5000/profile/{{ user_name }}/settings and reset user's password.{% endtrans %}
|
||||
|
|
|
@ -156,7 +156,7 @@ def test_profile_settings_too_long_password(testclient, logged_user):
|
|||
)
|
||||
|
||||
|
||||
def test_profile_settings_pwned_password(testclient, logged_user):
|
||||
def test_profile_settings_compromised_password(testclient, logged_user):
|
||||
"""Tests if password is compromised."""
|
||||
|
||||
def with_different_values(password, message):
|
||||
|
|
Loading…
Reference in a new issue