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

- 为所有平台特定插件添加正确的编译标签 - Linux插件添加 //go:build linux 标签 - Windows插件添加 //go:build windows 标签 - 重构本地插件注册方式 - 从main.go移至core包统一管理 - 创建平台特定的注册文件实现条件编译 - 修正参数文档中minidump平台支持描述 - 优化插件注册架构,提升代码组织性
13 lines
629 B
Go
13 lines
629 B
Go
//go:build windows
|
|
|
|
package core
|
|
|
|
import (
|
|
// 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事件订阅持久化
|
|
_ "github.com/shadow1ng/fscan/plugins/local/minidump" // Windows 内存转储
|
|
) |