maba/gentle-force
Composer 安装命令:
composer require maba/gentle-force
包简介
Library for limiting both brute-force attempts and ordinary requests, using leaky/token bucket algorithm, based on Redis
关键字:
README 文档
README
This is a library for rate-limiting both brute-force attempts (like invalid credentials) and ordinary requests.
Features
- can be used to limit brute-force attempts;
- can be used for request rate limiting;
- uses leaky / token bucket algorithm. This means that user does not have to wait for next hour or day - additional attempts are possible as time goes by. This also means that requests does not come in big batches when every hour starts;
- handles race-conditions. This is important for brute-force limiting. For example, if 1000 requests are issued at the same time to check same user's password, only configured number of attempts will be possible;
- can have several limits configured for single use-case (for example maximum of 100 requests per minute and 200 per hour);
- does not make assumptions about where and what it's used for - it can be used with user identifiers, API tokens, IP addresses or any other data to group usages.
Installation
composer require maba/gentle-force
Usage
<?php use Maba\GentleForce\RateLimit\UsageRateLimit; use Maba\GentleForce\RateLimitProvider; use Maba\GentleForce\Throttler; use Maba\GentleForce\Exception\RateLimitReachedException; $rateLimitProvider = new RateLimitProvider(); $rateLimitProvider->registerRateLimits('credentials_error', [ // allow 3 errors per hour; 2 additional errors if no errors were made during last hour (new UsageRateLimit(3, 3600))->setBucketedUsages(2), // allow 10 errors per day new UsageRateLimit(10, 3600 * 24), ]); $rateLimitProvider->registerRateLimits('api_request', [ // - allow 10 requests each minute; // - user can "save up" hour of usage if not using API. // This means up to 610 requests at once, after that - 10 requests per minute, // which could again save-up up to 610. (new UsageRateLimit(10, 60))->setBucketedPeriod(3600), ]); $throttler = new Throttler(new \Predis\Client([ 'host' => '127.0.0.1', ]), $rateLimitProvider); // rate limiting: try { $result = $throttler->checkAndIncrease('api_request', $_SERVER['REMOTE_ADDR']); header('Requests-Available', $result->getUsagesAvailable()); } catch (RateLimitReachedException $exception) { header('Wait-For', $exception->getWaitForInSeconds(), 429); return; } // brute-force limiting: try { // we must increase error count in-advance before even checking credentials // this avoids race-conditions with lots of requests $credentialsResult = $throttler->checkAndIncrease('credentials_error', $_POST['username']); } catch (RateLimitReachedException $exception) { echo sprintf('Too much password tries for user. Please try after %s seconds', $exception->getWaitForInSeconds()); return; } $credentialsValid = checkCredentials($_POST['username'], $_POST['password']); if ($credentialsValid) { // as we've increased error count in advance, we need to decrease it if everything went fine $credentialsResult->decrease(); // log user into system }
Alternatives
Actually, there are quite many of them.
Unfortunately, as some provide additional features (like different storage methods: file, memcached etc.), none were found with these criteria:
- usable for brute-forcing (only on errors), not for all requests;
- abstract, so that limiting by user, IP and other identifiers would be possible;
- rate limiting algorithm that would not block for too long for a legitimate user;
- free of race-conditions where actual limit would not work correctly on high load.
Some of reviewed alternatives: RateLimitInterface, rate-limiter, LosRateLimit, Rate-limit, rate-limit, php-ratelimiter, tokenbucket, brute-force, LoginGateBundle, tresholds-governor, throttle, PeerjUserSecurityBundle, php-ratelimiter, RateLimitBundle, CybBotDetectBunble, CCDNUserSecurityBundle, limit-number-calls-bundle, rate-limiter-php, flaps, token-bucket
Semantic versioning
This library follows semantic versioning.
See Symfony BC rules for basic information about what can be changed and what not in the API.
Running tests
Functional tests require Redis and several PHP extensions for forking, so that behaviour on high traffic could be tested. So, generally, it's easier to run them in docker.
composer update
cd docker
docker-compose up -d
docker exec -it gentle_force_test_php vendor/bin/phpunit
docker-compose down
Contributing
Feel free to create issues and give pull requests.
You can fix any code style issues using this command:
vendor/bin/php-cs-fixer fix --config=.php_cs
maba/gentle-force 适用场景与选型建议
maba/gentle-force 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 615.15k 次下载、GitHub Stars 达 43, 最近一次更新时间为 2017 年 05 月 10 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「security」 「throttle」 「rate limiting」 「rate limit」 「brute-force」 「DOS protection」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 maba/gentle-force 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 maba/gentle-force 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 maba/gentle-force 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Provide a way to secure accesses to all routes of an symfony application.
A Laravel Pulse card to track users & URL's that are being throttled by your Rate Limiters
A/B Testing of content elements
It's a barebone security class written on PHP
hyperf cache counter rate limiter
Contao CMS integrity check for some files
统计信息
- 总下载量: 615.15k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 45
- 点击次数: 37
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-05-10