mirror of
https://github.com/shadow1ng/fscan.git
synced 2026-09-22 03:10:42 +08:00
cleaner 新增 Windows 持久化完整清理: - Winlogon Shell/Userinit 恢复默认值 - IFEO 映像劫持清理 - 注册表 Run/RunOnce 清理 - 计划任务、服务、启动文件夹清理 - BITS 任务、WMI 事件订阅清理 - Prefetch 记录清理 minidump 增加杀软前置检测,发现 Defender/EDR 直接退出, 避免 MiniDumpWriteDump hang 导致系统崩溃
10 lines
173 B
Go
10 lines
173 B
Go
//go:build (plugin_cleaner || !plugin_selective) && !windows && !no_local
|
|
|
|
package local
|
|
|
|
import "strings"
|
|
|
|
func cleanPersistence(output *strings.Builder) int {
|
|
return 0
|
|
}
|