Skip to content

Commit 0682383

Browse files
authored
Merge pull request #161 from FusionAuth/add-breached-password-guide
Add breached password guide
2 parents f79ff3c + 080dc5c commit 0682383

18 files changed

+325
-18
lines changed

site/_layouts/doc.liquid

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,7 @@
264264
<li {% if page.url contains "/guides/" %} class="open"{% endif %}>
265265
<a href="#" class="sub-menu"><i class="fal fa-fw fa-map-signs"></i> Guides <i class="fal fa-chevron-{% if page.url contains "/guides/" %}up{% else %}down{% endif %} fa-fw"></i></a>
266266
<ul>
267+
<li {% if page.url == "/docs/v1/tech/guides/breached-password-detection.html" %}class="active"{% endif %}><a href="/docs/v1/tech/guides/breached-password-detection">Breached Password Detection</a></li>
267268
<li {% if page.url == "/docs/v1/tech/guides/passwordless.html" %}class="active"{% endif %}><a href="/docs/v1/tech/guides/passwordless">Passwordless</a></li>
268269
<li {% if page.url == "/docs/v1/tech/guides/api-authorization.html" %}class="active"{% endif %}><a href="/docs/v1/tech/guides/api-authorization">Securing your APIs</a></li>
269270
</ul>
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<p>This password was found in the list of vulnerable passwords, and is no longer secure.</p>
2+
3+
<p>In order to secure your account, it is recommended to change your password at your earliest convenience.</p>
4+
5+
<p>Follow this link to change your password.</p>
6+
7+
<a href="http://localhost:9011/password/forgot?email=${user.email}&tenantId=${user.tenantId}">
8+
http://localhost:9011/password/forgot?email=${user.email}&tenantId=${user.tenantId}
9+
</a>
10+
11+
- FusionAuth Admin

site/docs/v1/tech/email-templates/email-templates.adoc

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -82,17 +82,7 @@ Below you will find each stock template that FusionAuth ships for reference. The
8282
.HTML
8383
[source,text]
8484
----
85-
<p>This password was found in the list of vulnerable passwords, and is no longer secure.</p>
86-
87-
<p>In order to secure your account, it is recommended to change your password at your earliest convenience.</p>
88-
89-
<p>Follow this link to change your password.</p>
90-
91-
<a href="http://localhost:9011/password/forgot?email=${user.email}&tenantId=${user.tenantId}">
92-
http://localhost:9011/password/forgot?email=${user.email}&tenantId=${user.tenantId}
93-
</a>
94-
95-
- FusionAuth Admin
85+
include::docs/src/email/breached-password.html[]
9686
----
9787

9888
.Text

site/docs/v1/tech/guides/breached-password-detection.adoc

Lines changed: 306 additions & 0 deletions
Large diffs are not rendered by default.

site/docs/v1/tech/guides/index.adoc

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
---
22
layout: doc
33
title: Guides Overview
4-
description: An overview of the FusionAuth Guides
4+
description: An overview of FusionAuth Guides
55
---
66

77
:sectnumlevels: 0
88

99
== Overview
1010

11-
This section contains a number of guides that will help walk through some of the functionality of fusionauth.
12-
13-
Here are our tutorials:
11+
This section contains guides which walk through various aspects of FusionAuth functionality. These documents are meant to give you thorough understanding of the technology covered. They should be used in conjunction with the link:../apis[API documentation].
1412

13+
* link:breached-password-detection[Breached Password Detection]
1514
* link:passwordless[Passwordless Login]
16-
* link:api-authorization[API Authorization]
15+
* link:api-authorization[Securing Your APIs]

site/docs/v1/tech/guides/passwordless.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If you are planning to use passwordless, you have two options. The first option
2828

2929
In either case, you should:
3030

31-
* Configure your SMTP server settings under Tenants / Email. If you are testing this flow out locally, you may want to use https://mailcatcher.me/[mailcatcher]
31+
* Configure your SMTP server settings under [breadcrumb]#Tenants -> Email#. If you are testing this flow out locally, you may want to use https://mailcatcher.me/[mailcatcher]
3232
* Create an application
3333
* Turn on "Passwordless Login" under the "Security" tab of the application configuration:
3434
+

site/docs/v1/tech/reactor.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Performing breach detection during login may introduce additional latency to the
4141

4242
To enable and configure this feature navigate to [breadcrumb]#Tenants -> Edit -> Password#
4343

44-
Detailed documentation on the configuration can be found in the link:core-concepts/tenants#password[Tenant Documentation].
44+
Detailed documentation on the configuration can be found in the link:core-concepts/tenants#password[Tenant Documentation] and the link:guides/breached-password-detection[Breached Password Detection Guide].
4545

4646
Additionally, there is some keen insight into how the Reactor Breached Password Detection is performing on the *Reactor* page.
4747

0 commit comments

Comments
 (0)