Download the PHP package pluswerk/secure-login without Composer
On this page you can find all versions of the php package pluswerk/secure-login. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download pluswerk/secure-login
More information about pluswerk/secure-login
Files in pluswerk/secure-login
Package secure-login
Short Description pluswerk: Security for authentications
License GPL-3.0+
Homepage https://www.pluswerk.ag
Informations about the package secure-login
+Pluswerk TYPO3 security extension: Secure Login
This extension checks frontend and backend logins for brute-force attacks. You can also detect and avoid brute-force attacks on other inputs, like serial number inputs or coupon code inputs.
Say goodbye to the try-out-hackers!
Advantages
- extendable
- small
- security improvement
- just install and use preset configuration
Identification of brute-force attacks
A brute-force attack is identified in accordance with the following rules:
- An IP tries out lots of different users
- An user tries out lots of different passwords
Is a brute-force attack identified, the attacking IP (in the first case) or user (in the second case) will be blocked over a specific period.
Installation
Install the TYPO3 extension via composer (recommended) or install the extension via TER (not recommended anymore).
Composer installation:
Default configuration
If no settings are made, the extension blocks users or IPs for two hours if they have more than 5 failed attempts in one hour.
Configuration (optional)
Add the following configurations:
- maxFailedAttempts: Max amount of failed logins over specified time period 'timeRangeInSeconds'.
- timeRangeInSeconds: Time period (in seconds) over which 'maxFailedAttempts' are counted.
- blockingPeriodInSeconds: Time period (in seconds) over which the user or IP are blocked.
Example:
one user gets blocked for 'blockingPeriodInSeconds' seconds if he tries out 'maxFailedAttempts' wrong passwords in the time period of 'timeRangeInSeconds' seconds.
Extend Extension
Display security messages
The configured blocking is always active. To show security messages in the frontend add the following lines to your template:
Log fail attempts
This sample logs failed logins: