mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-09-14 14:06:44 +08:00
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 内存转储
|
|
) |