ROT 编码的 Python 脚本执行

编辑

识别使用 ROT 密码进行字母替换的 Python 脚本的执行。攻击者可能会使用此方法来编码和混淆其恶意代码在合法的 Python 包中。

规则类型: eql

规则索引:

  • logs-endpoint.events.process-*
  • logs-endpoint.events.file-*

严重性: 中

风险评分: 47

运行频率: 5 分钟

搜索索引范围: now-9m (Date Math 格式, 另请参阅 额外的回溯时间)

每次执行的最大警报数: 100

参考资料:

标签:

  • 域: 端点
  • 操作系统: Windows
  • 操作系统: macOS
  • 用例: 威胁检测
  • 策略: 防御规避
  • 数据源: Elastic Defend

版本: 1

规则作者:

  • Elastic

规则许可证: Elastic License v2

规则查询

编辑
sequence by process.entity_id with maxspan=1m
 [process where host.os.type in ("windows", "macos") and event.type == "start" and process.name : "python*"]
 [file where host.os.type in ("windows", "macos") and
  event.action != "deletion" and process.name : "python*" and file.name : "rot_??.cpython-*.pyc*"]

框架: MITRE ATT&CKTM