service-captcha/app
Leonid Nikitin c18e7e54b7
Modified the Middleware Kernel to use a new method for request throttling that uses Redis and created a new middleware to ensure that user email is verified.
These changes allow for more efficient request throttling by utilizing Redis. The new EnsureUserIsVerified middleware improves security by validating that a user's email has been verified or if the user is active before granting access, returning a 403 error if the user fails these checks.
2023-07-06 19:52:39 +06:00
..
Captcha Add captcha image generation functionality. 2023-06-28 17:29:56 +06:00
Console Added console command to add user with admin role. 2023-07-02 16:17:18 +06:00
Contracts Made authorization. 2023-07-06 10:48:32 +06:00
Dto Made authorization. 2023-07-06 10:48:32 +06:00
Enums A new enumeration 'SystemRole' has been created for user roles. For now, it only contains one case 'Admin'. This list is intended to designate system roles that cannot be removed. 2023-07-02 16:07:49 +06:00
Exceptions Added console command to add user with admin role. 2023-07-02 16:17:18 +06:00
Http Modified the Middleware Kernel to use a new method for request throttling that uses Redis and created a new middleware to ensure that user email is verified. 2023-07-06 19:52:39 +06:00
Models Added console command to add user with admin role. 2023-07-02 16:17:18 +06:00
Providers Extended rate limiting functionality within the RouteServiceProvider to limit the login requests. Now the application limits the number of requests both per IP address and per email. This will drastically improve security by minimizing automated spam and brute-force attack attempts. 2023-07-06 10:50:15 +06:00
Repositories Made authorization. 2023-07-06 10:48:32 +06:00
ServiceResults Add captcha image generation functionality. 2023-06-28 17:29:56 +06:00
Services Made authorization. 2023-07-06 10:48:32 +06:00
View/Components/Public Made authorization. 2023-07-06 10:48:32 +06:00