-
Updated
Nov 27, 2020 - PHP
user-management
Here are 567 public repositories matching this topic...
-
Updated
Sep 29, 2020 - PHP
-
Updated
Nov 11, 2020 - Python
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 16, 2020 - PHP
The following guides may be improved with unit test examples:
- https://github.com/danschultzer/pow/blob/master/guides/custom_controllers.md
- https://github.com/danschultzer/pow/blob/master/guides/sync_user.md
-
https://github.com/danschultzer/pow/blob/master/guides/lock_users.md -
https://github.com/danschultzer/pow/blob/master/guides/user_roles.md
There's alread
-
Updated
Nov 24, 2020 - PHP
I would need to get each user's hourly rate using the API (this should be one of the user preferences): how should I do it?
I'm not sure if it's already feasible (and I just cannot find it) or if this is missing.
Thanks in advance for your help.
Ciao,
Alberto
-
Updated
Nov 26, 2020 - JavaScript
-
Updated
Dec 8, 2020 - Python
Houseparty users can be found by checking the following URL: https://houseparty.com/add/{placeholder}.
-
Updated
Dec 8, 2020 - Python
-
Updated
Feb 27, 2020 - PHP
-
Updated
Nov 19, 2020 - PHP
-
Updated
Oct 17, 2020 - Java
-
Updated
May 28, 2020
-
Updated
Sep 8, 2020 - Vue
-
Updated
Dec 6, 2020 - JavaScript
-
Updated
Jun 13, 2020 - PHP
-
Updated
Nov 4, 2020 - C#
-
Updated
Mar 13, 2020 - PHP
-
Updated
Jun 13, 2020 - PHP
-
Updated
Oct 19, 2020 - TypeScript
-
Updated
Dec 7, 2020 - PHP
-
Updated
Oct 29, 2020 - Go
-
Updated
Sep 5, 2020 - JavaScript
-
Updated
Mar 9, 2018 - HTML
-
Updated
Mar 6, 2017 - PHP
-
Updated
Oct 1, 2020 - PHP
Improve this page
Add a description, image, and links to the user-management topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the user-management 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