caseyamcl / dangerous_usernames
A list of dangerous usernames
v1.1
2022-02-11 20:23 UTC
Requires
- php: ^5.3|^7.0|^8.0|^9.0
Requires (Dev)
- phpunit/phpunit: >=5.4.3
- squizlabs/php_codesniffer: ^2.3
This package is auto-updated.
Last update: 2024-10-12 02:34:34 UTC
README
This is simply a list dangerous usernames that you can include in your project. It was inspired by this article.
It comes with a composer.json
file and DangerousUserNames
class for easy inclusion in PHP projects.
But, since it is simply a txt file, you can use it with any platform.
Install
Via Composer:
$ composer require caseyamcl/dangerous_usernames
Or, use whatever programming language you want to open the textfile and read the contents into a list/array (one item per line).
Usage
use DangerousUserNames\DangerousUserNames; // string[] $dangerousNames = new DangerousUserNames(); $dangerousNames->inList('admin'); // case-insensitive $dangerousNames->inList('ADMIN', true); // case-sensitive
Contributing
Pull requests are welcome! If you have any user names to add, please do so in alphabetical order.
Credits
License
The MIT License (MIT). Please see License File for more information.