sagarkc/laravel-bot-throttle
Composer 安装命令:
composer require sagarkc/laravel-bot-throttle
包简介
Advanced bot detection and request throttling package for Laravel by Sagar KC
README 文档
README
Laravel Bot Throttle is an advanced middleware package for Laravel to detect and block bots, throttle abuse, and protect your routes. Developed and maintained by Sagar KC
🚀 Features
- 🛡️ Detects bots based on User-Agent patterns
- ⛔ Temporarily bans malicious IPs via cache
- 📈 Logs bot activity to a dedicated log file (
botthrottle.log) - 🔄 Customizable request throttling per IP and route
- ⚙️ IP whitelisting and block control
- 🧩 Fully configurable via
config/botthrottle.php
📦 Installation
composer require sagarkc/laravel-bot-throttle
🛠️ Publish the Config File
php artisan vendor:publish --provider="BotThrottle\BotThrottleServiceProvider"
This will publish config/botthrottle.php which allows full customization, you can add the list of bots as per your need.
📝 Optional: Enable Custom Bot Log File
To log bot activity in a separate file (storage/logs/botthrottle.log), add the following line to the channels array in your config/logging.php file:
'channels' => array_merge(config('logging.channels'), config('botthrottle.log_channel')),
This merges the custom botthrottle log channel defined in config/botthrottle.php into Laravel's logging system.
After this, all blocked bots will be logged in
botthrottle.loginstead of the defaultlaravel.log.
🧪 Usage
Apply middleware to your routes:
Route::middleware(['detect.bot', 'throttle.bot'])->group(function () { Route::get('/api/data', 'ApiController@getData'); });
⚙️ Configuration Example
return [ 'throttle' => [ 'max_attempts' => 100, 'decay_minutes' => 1, ], 'bot_detection' => [ 'user_agents' => [ 'curl', 'python', 'bot', 'spider', 'crawler', 'wget', 'httpclient', 'scrapy', 'axios' ], 'ip_blacklist' => [], 'log_bots' => true, ], 'advanced' => [ 'log_all_bots' => true, 'ban_duration_minutes' => 60, 'block_response_code' => 403, 'allow_whitelist_ips' => true, 'whitelist_ips' => ['127.0.0.1'], ], 'log_channel' => [ 'botthrottle' => [ 'driver' => 'single', 'path' => storage_path('logs/botthrottle.log'), 'level' => 'warning', ], ], ];
📊 View Blocked IPs (Programmatically)
use BotThrottle\BotLog; $blockedIps = BotLog::getBlockedIps();
📄 License
MIT © Sagar KC
🙌 Contributing
Pull requests and issues are welcome. Please fork the repository and open a PR with improvements or bug fixes.
sagarkc/laravel-bot-throttle 适用场景与选型建议
sagarkc/laravel-bot-throttle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 05 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 sagarkc/laravel-bot-throttle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 sagarkc/laravel-bot-throttle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 30
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-05-23