-
Updated
Sep 29, 2020 - PHP
users
Here are 423 public repositories matching this topic...
In order to make the email functionality work on my SMTP server (which forwards emails to a secure ISP relay), I had to make these changes in the userfrosting/app/sprinkles/core/config/default.php:
'port' => 25,
'auth' => false,
'secure' => 'false'
Please consider adding these options to the setup options (and documentation).
I had to create a PHPMailer application to debug my
-
Updated
Nov 29, 2020 - PHP
-
Updated
Dec 8, 2019 - Swift
-
Updated
Dec 3, 2020 - Python
-
Updated
Nov 2, 2020 - Blade
-
Updated
Sep 8, 2020 - Ruby
-
Updated
Nov 15, 2019 - Shell
-
Updated
Apr 27, 2020 - TypeScript
-
Updated
Sep 5, 2020 - JavaScript
-
Updated
Oct 7, 2020 - PHP
-
Updated
Nov 1, 2018 - Elixir
-
Updated
Jul 29, 2020 - Python
-
Updated
Jan 22, 2019 - JavaScript
-
Updated
Jul 2, 2019
-
Updated
Feb 7, 2020 - PHP
-
Updated
Jul 18, 2020 - PHP
Improve this page
Add a description, image, and links to the users topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the users topic, visit your repo's landing page and select "manage topics."
Describe the bug
Currently, login requests will fail faster if the user does not exist as the hash does not have to be computed. This can leave to timing attacks where an attacker can guess if a user exists or not, which defeats account enumeration defenses.
Expected behavior
Every login request should take a similar amount of time regardless of whether the user exists or not. The