silverstripe / securityextras
A loose collection of tools to further lock down a SilverStripe installation.
Installs: 1 348
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 17
Forks: 6
Open Issues: 1
Type:silverstripe-module
Requires
This package is auto-updated.
Last update: 2024-07-10 21:54:27 UTC
README
Security Extras for SilverStripe
A loose collection of tools to further lock down a SilverStripe installation.
Features
Group-based IP Restrictions
Adds an "IP Addresses" whitelist to each Group record in the CMS interface, which means the users in this group will just be considered a member when they're logging in from the specified IP range.
New Zealand E-Government Password Validator
A password validator which enforces specific rules around password length and complexity.
Will be enforced when a Member
record is saved, through Member->validate()
.
The underlying password validation is a core feature, so can be easily adapted
to other validation standards.
// in mysite/_config.php Member::set_password_validator(new NZGovtPasswordValidator());
Maintainers
- Sam Minnée (sam at silverstripe dot com)
Requirements
Requires SilverStripe 3.0 or newer.
Related
You might also be interested in the secure-files modules for SilverStripe, which allows permission control on files hosted through a SilverStripe installation.