通过可移动介质执行并建立网络连接

编辑

通过可移动介质执行并建立网络连接

编辑

识别从可移动介质执行以及由不寻常进程执行的进程。攻击者可能会通过将恶意软件复制到可移动介质,并在该介质插入系统并执行时利用自动运行功能,从而进入系统,甚至可能进入断开或气隙网络中的系统。

规则类型: eql

规则索引:

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

严重性: 低

风险评分: 21

运行频率: 5m

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

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

参考: 无

标签:

  • 域: 端点
  • 操作系统: Windows
  • 用例: 威胁检测
  • 战术: 初始访问
  • 数据源: Elastic Defend

版本: 3

规则作者:

  • Elastic

规则许可证: Elastic License v2

规则查询

编辑
sequence by process.entity_id with maxspan=5m
 [process where host.os.type == "windows" and event.action == "start" and

  /* Direct Exec from USB */
  (process.Ext.device.bus_type : "usb" or process.Ext.device.product_id : "USB *") and
  (process.code_signature.trusted == false or process.code_signature.exists == false) and

  not process.code_signature.status : ("errorExpired", "errorCode_endpoint*")]
 [network where host.os.type == "windows" and event.action == "connection_attempted"]

框架: MITRE ATT&CKTM