fscan/core/registry_windows.go
ZacharyZcR da981cdbce refactor: 正确组织平台特定插件注册
- 将avdetect从跨平台插件移至Windows特有插件
- 将dcinfo从跨平台插件移至Windows特有插件
- 优化Registry.go插件分类和注释
- 确保平台特定功能在正确的registry文件中注册

插件分布:
- Registry.go: 真正跨平台的服务和本地插件
- registry_windows.go: Windows特有的系统功能和持久化插件
- registry_linux.go: Linux特有的持久化插件
2025-08-12 18:16:07 +08:00

17 lines
851 B
Go

//go:build windows
package core
import (
// Windows特有系统功能插件
_ "github.com/shadow1ng/fscan/plugins/local/avdetect" // Windows 杀毒软件检测
_ "github.com/shadow1ng/fscan/plugins/local/dcinfo" // Windows 域控信息收集
_ "github.com/shadow1ng/fscan/plugins/local/minidump" // Windows 内存转储
// Windows持久化插件
_ "github.com/shadow1ng/fscan/plugins/local/winregistry" // Windows 注册表持久化
_ "github.com/shadow1ng/fscan/plugins/local/winstartup" // Windows 启动文件夹持久化
_ "github.com/shadow1ng/fscan/plugins/local/winschtask" // Windows 计划任务持久化
_ "github.com/shadow1ng/fscan/plugins/local/winservice" // Windows 服务持久化
_ "github.com/shadow1ng/fscan/plugins/local/winwmi" // Windows WMI事件订阅持久化
)