mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-09-14 14:06:44 +08:00

- 在Core/Registry.go中添加FTP插件导入,确保插件正确注册 - 完善FTP插件的i18n消息支持,添加完整的中英文消息 - 修复FTP利用器错误处理逻辑,改进错误报告机制 - 添加FTP测试环境docker-compose配置文件 修复后FTP插件支持: - 服务识别和版本检测 - 弱密码扫描和匿名登录检测 - 目录枚举、文件上传下载测试等利用功能
16 lines
335 B
YAML
16 lines
335 B
YAML
version: '3'
|
|
services:
|
|
ftp:
|
|
image: bogem/ftp
|
|
container_name: ftp-test
|
|
environment:
|
|
- FTP_USER=admin
|
|
- FTP_PASS=123456
|
|
- PASV_ADDRESS=127.0.0.1
|
|
- PASV_MIN_PORT=30000
|
|
- PASV_MAX_PORT=30100
|
|
ports:
|
|
- "21:21"
|
|
- "20:20"
|
|
- "30000-30100:30000-30100"
|
|
restart: unless-stopped |