具有网络摄像头视频捕获功能的 PowerShell 脚本

编辑

具有网络摄像头视频捕获功能的 PowerShell 脚本编辑

检测可用于录制网络摄像头视频的 PowerShell 脚本。攻击者可以捕获此信息来勒索或监视受害者。

规则类型:查询

规则索引:

  • winlogbeat-*
  • logs-windows.powershell*

严重性:中等

风险评分: 47

每隔:5 分钟运行一次

从以下时间开始搜索索引:now-9m(日期数学格式,另请参见 附加回溯时间

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

参考:

标签:

  • 域:端点
  • 操作系统:Windows
  • 用例:威胁检测
  • 策略:收集
  • 数据源:PowerShell 日志

版本: 4

规则作者:

  • Elastic

规则许可:Elastic 许可证 v2

设置编辑

设置

必须启用PowerShell 脚本块记录记录策略。使用高级审核配置实施记录策略的步骤

Computer Configuration >
Administrative Templates >
Windows PowerShell >
Turn on PowerShell Script Block Logging (Enable)

通过注册表实施记录策略的步骤

reg add "hklm\SOFTWARE\Policies\Microsoft\Windows\PowerShell\ScriptBlockLogging" /v EnableScriptBlockLogging /t REG_DWORD /d 1

规则查询编辑

event.category:process and host.os.type:windows and
  powershell.file.script_block_text : (
    "NewFrameEventHandler" or
    "VideoCaptureDevice" or
    "DirectX.Capture.Filters" or
    "VideoCompressors" or
    "Start-WebcamRecorder" or
    (
      ("capCreateCaptureWindowA" or
       "capCreateCaptureWindow" or
       "capGetDriverDescription") and
      ("avicap32.dll" or "avicap32")
    )
  )

框架:MITRE ATT&CKTM