Skills Plugins MCP Prompt Model 博客 我的中心

evasion-technique-integrate

免杀技术整合:将免杀技术(API 混淆、字符串加密、Syscall、反调试、AMSI 绕过等)植入已有 Loader 代码。当需要向已有 Loader 添加新加载技术、或现有 Loader 被检测到需要替换组件时使用。先读 references/evasion-techniques-db.json 确认组件库中有你需要的技术,再执行集成

DeepseekModel Curated skill Quality Excellent · 90 v1.0.0

Get

https://deepseekmodel.com/api/download.php?id=wgpsec-aboutsecurity-skills-evasion-evasion-technique-integrate-skill-md&format=skill
Download .skill Standard format with system_prompt and model_config, ready for any agent framework
The actual content of the system_prompt field in the .skill file.
name evasion-technique-integrate description 免杀技术整合:将免杀技术(API 混淆、字符串加密、Syscall、反调试、AMSI 绕过等)植入已有 Loader 代码。当需要向已有 Loader 添加新加载技术、或现有 Loader 被检测到需要替换组件时使用。先读 references/evasion-techniques-db.json 确认组件库中有你需要的技术,再执行集成 metadata {"tags":"evasion,integrate,api-hashing,xor,syscall,anti-debug,amsi,unhooking,bypass","category":"evasion"} 免杀技术整合方法论 ⛔ 深入参考 172 条免杀技术库 → references/evasion-techniques-db.json 整合模式与代码示例 → references/integration-patterns.md 7 类免杀技术速查 类型 目的 复杂度 典型技术 api_obfuscation 隐藏 API 导入 medium API Hashing, IAT 混淆 string_obfuscation 隐藏敏感字符串 simple XOR 加密, 编译期混淆 memory_evasion 避免 RWX 内存页 simple 权限翻转 (RW→RX) execution_evasion 绕过 Hook complex 直接 Syscall, 间接 Syscall anti_analysis 检测调试/沙箱 medium IsDebuggerPresent, 时间差, CPU 核心数 amsi_etw_bypass 禁用 AMSI/ETW medium AmsiScanBuffer Patch, EtwEventWrite Patch unhooking 恢复被 Hook 的 DLL complex NTDLL 重映射 整合流程 1. 读取目标 Loader 源码 2. 查免杀技术库 → references/evasion-techniques-db.json 3. 分析兼容性 ├─ 使用 RWX? → 加 memory_evasion(权限翻转) ├─ 使用标准 API? → 加 execution_evasion(Syscall) ├─ 有明文字符串? → 加 string_obfuscation(XOR) └─ 无反调试? → 加 anti_analysis 4. 逐项整合(参考 references/integration-patterns.md) 5. 交叉编译验证 6. 输出变更报告 兼容性矩阵 Loader 特征 兼容技术 任意 Loader API 混淆、字符串混淆、反调试 使用 RWX 内存 权限翻转 使用标准 Win API Syscall 替换 未做 Unhook NTDLL Unhooking 快速代码示例 权限翻转(最常用) // Before: PAGE_EXECUTE_READWRITE(一步到位,易被检测) LPVOID addr = VirtualAlloc( NULL , size, MEM_COMMIT, PAGE_EXECUTE_READWRITE); // After: 先 RW 写入,再改 RX 执行 LPVOID addr = VirtualAlloc( NULL , size, MEM_COMMIT, PAGE_READWRITE); memcpy (addr, shellcode, size); VirtualProtect(addr, size, PAGE_EXECUTE_READ, &oldProtect); 字符串 XOR char dllName[] = { 0x1a , 0x14 , 0x07 , ... }; // XOR encrypted for ( int i = 0 ; i < sizeof (dllName); i++) dllName[i] ^= KEY; RWX 权限分离 两步操作:先写后执行(W+X 分离),不使用 RWX 一步到位 验证:编译通过、功能正常、验证执行结果
Keywords that activate this skill. Click one to copy it.

This skill does not provide trigger words.

The downloaded .skill package contains the following fields.
Field Description
formatFormat tag (skill/v1)
skill_idUnique skill ID
nameSkill name
versionVersion
descriptionDescription
categoryCategories (array)
trigger_wordsTrigger words
tagsTags
sourceSource
source_urlSource URL (this page)
exported_atExported at (set per download)
system_promptSystem prompt body
model_configModel config: provider / model / temperature / max_tokens / top_p
examplesExamples
install_guideImport guide for Coze / Dify / Claude / custom frameworks
The same skill can be exported in different platform formats.
.skill Standard format with system_prompt and model_config, ready for any agent framework Download
.skillpro Enhanced format with scripts, tools, dependencies and hooks Download
.json Plain JSON export with system_prompt and model parameters only Download
Coze Markdown with frontmatter, for Coze platform import Download
Dify Dify DSL, import directly after creating an app Download

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。