使用说明
- 安装依赖:
pip install python-evtx lxml - 收集 PowerShell 操作日志:
Microsoft-Windows-PowerShell%4Operational.evtx - 使用 python-evtx 解析事件 ID 4104 条目,提取 ScriptBlockText、ScriptBlockId 以及 MessageNumber/MessageTotal,用于多块脚本重建。
- 应用检测启发式规则:
- Base64 编码命令(
-EncodedCommand、FromBase64String) - 下载植入器(
DownloadString、DownloadFile、Invoke-WebRequest、Net.WebClient) - AMSI 绕过模式(
AmsiUtils、amsiInitFailed) - 混淆指标(高熵、反引号插入、字符串拼接)
- Base64 编码命令(
- 生成报告,包含重建脚本、风险评分和 MITRE ATT&CK 映射。
python scripts/agent.py --evtx-file /path/to/PowerShell-Operational.evtx --output ps_analysis.json
示例
检测编码命令执行
import base64
if "-encodedcommand" in script_text.lower():
encoded = script_text.split()[-1]
decoded = base64.b64decode(encoded).decode("utf-16-le")
重建多块脚本
拆分在多个 4104 事件中的脚本共享一个 ScriptBlockId。按 MessageNumber 顺序拼接各块以恢复完整脚本。