freinir/zakarum
Composer 安装命令:
composer require freinir/zakarum
包简介
The package is designed to block unwanted traffic
README 文档
README
About
Zakarum is a protection layer that helps prevent unwanted access to your website from bots and automated traffic.
The protection is based on a set of rules that analyze incoming requests.
You can configure the built-in rules or add your own custom rules to extend the behavior.
The system is modular and rule-based, which allows flexible protection strategies depending on your project needs.
Installation
Install the package via Composer
`composer require freinir/ad-wizard`
Basic usage
Call the main class at any convenient place during your application initialization.
The protection system has a modular structure based on rules that must implement the RuleInterface.
If a request violates at least one rule, the user will be presented with a CAPTCHA challenge (ReCaptcha by default).
After successfully passing the CAPTCHA, a secret hash is stored in the client's cookies for 1 hour (the cookie lifetime is configurable).
$captcha = new Recaptcha('secretKey', 'publicKey');
$cookie = new CookieService('cookie_secret_salt', 3600, 'cookie_name');
$context = RequestContext::fromGlobals();
$guard = new Guard($context, $captcha, $cookie);
$ipList = (new IpCollectorDataProvider([
['127.0.0.1'],
(new GoogleIpDataProvider()) // optional
]))->getIpList();
$guard->inWhiteList($ipList);
$guard->checkRule((new RefererRule()), $context);
$guard->checkRule((new LanguageRule()), $context);
$badUserAgentRule = new UserAgentRule(['dotbot', '', '']);
$guard->checkRule($badUserAgentRule, $context);
$allowCountriesRule = new GeoIpRule(
["AU", "BY"],
__DIR__ . '/geoData/SxGeo.dat'
);
$guard->checkRule($allowCountriesRule, $context);
freinir/zakarum 适用场景与选型建议
freinir/zakarum 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 113 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 03 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 freinir/zakarum 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 freinir/zakarum 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 113
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 20
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-12