基于ROT编码的Python脚本执行

编辑

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

规则类型: eql

规则索引:

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

严重性: 中等

风险评分: 47

运行频率: 5分钟

搜索索引时间范围: now-9m (日期数学格式,另请参见 额外回溯时间)

每次执行的最大告警数: 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