lucamauri/wiki2ban
Composer 安装命令:
composer require lucamauri/wiki2ban
包简介
Log failed MediaWiki login attempts to a file consumable by Fail2Ban
关键字:
README 文档
README
Wiki2Ban
Wiki2Ban (W2B) is a MediaWiki extension that logs failed authentication attempts to a file that Fail2Ban can read, enabling automatic IP banning of attackers.
This extension is inspired by Extension:Fail2banlog, which is unmaintained and built for an older MediaWiki version. Wiki2Ban was written from scratch by Luca Mauri, originally for WikiTrek, and released as open source for the broader MediaWiki community.
Features
- Hooks into MediaWiki's authentication system to detect failed login attempts
- Writes a structured log line for each failure, including timestamp, username, wiki name, and client IP address
- Correctly resolves the client IP address behind reverse proxies and CDNs
- Log format is compatible with Fail2Ban out of the box
- Includes ready-to-use Fail2Ban filter and jail configuration files
- Includes an optional Log Navigator format definition for interactive log analysis
- No database changes required
- Configurable log file path
Requirements
- MediaWiki >= 1.42.0
- PHP >= 8.4
- Fail2Ban >= 0.10 (for progressive banning support)
Installation
The easiest way to install the extension is via Composer, which will automatically resolve all dependencies.
Add the following to composer.local.json at the root of your MediaWiki installation (create the file if it does not exist):
{
"require": {
"lucamauri/wiki2ban": "~1.1"
},
"extra": {
"merge-plugin": {
"include": []
}
}
}
Then run Composer from the root of your MediaWiki installation:
composer install --no-dev
Add the following line near the rest of the extension loading calls in LocalSettings.php:
wfLoadExtension('Wiki2ban');
Then add the configuration parameters described in the next section.
Configuration
Add the following to LocalSettings.php:
$wgW2BLogFilePath = "/var/log/mediawiki/wiki2ban.log";
$wgW2BLogFilePath
The full path to the log file that Wiki2Ban will write to and that Fail2Ban will monitor. The web server process must have write permission to this file and its parent directory.
Default value: /var/log/mediawiki/wiki2ban.log
Fail2Ban configuration
After installing and configuring the extension, you need to configure Fail2Ban to monitor the log file. The f2bconf/ directory in this repository contains ready-to-use configuration files.
Filter
Copy f2bconf/w2bfilter.conf to Fail2Ban's filter directory:
cp f2bconf/w2bfilter.conf /etc/fail2ban/filter.d/w2bfilter.conf
Jail rule
Copy f2bconf/w2brule.conf to Fail2Ban's jail directory:
cp f2bconf/w2brule.conf /etc/fail2ban/jail.d/wiki2ban.conf
Then edit the file to set logpath to match the value of $wgW2BLogFilePath in your LocalSettings.php.
Tuning for production
The default rule triggers after 5 failed attempts in 60 seconds and bans for 10 minutes. For a production wiki exposed to the internet, consider stricter values:
maxretry = 3 findtime = 300 bantime = 86400
This bans an IP for 24 hours after 3 failures within 5 minutes. Progressive banning is enabled by default in the provided configuration — each repeated offence doubles the ban duration up to a maximum of one week.
After making changes, reload Fail2Ban:
sudo systemctl reload fail2ban
Troubleshooting
To capture detailed debug log messages from Wiki2Ban, add the following to LocalSettings.php:
$wgShowExceptionDetails = true; $wgDebugLogGroups['Wiki2Ban'] = "/var/log/mediawiki/Wiki2Ban-{$wgDBname}.log";
Optional: Log Navigator format
f2bconf/wiki2ban.json is a format definition for the Log Navigator application, which allows interactive exploration and filtering of the Wiki2Ban log file. See the lnav format documentation for installation instructions.
License
GNU General Public License, version 2 or later
Maintainers
Contributors
lucamauri/wiki2ban 适用场景与选型建议
lucamauri/wiki2ban 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 87 次下载、GitHub Stars 达 6, 最近一次更新时间为 2021 年 03 月 21 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「security」 「mediawiki」 「fail2ban」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 lucamauri/wiki2ban 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 lucamauri/wiki2ban 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 lucamauri/wiki2ban 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Automatically logs-in users if they are already authenticated by a remote source. (e.g. environment variable REMOTE_USER)
An extension to Semantic MediaWiki allowing to build breadcrumb links from an attributive property filter
Helper functions for the MediaWiki ExtensionRegistry
Adds the EDTF data type to Wikibase
Provide a way to secure accesses to all routes of an symfony application.
MediaWiki extension that allows embedding external content, specified by URL, into your wiki pages
统计信息
- 总下载量: 87
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0-or-later
- 更新时间: 2021-03-21