tensorboard-unauth: Tensorboard Unauth

日期: 2025-09-01 | 影响软件: 未知 | POC: 已公开

漏洞描述

Tensorboard Unauthenticated

PoC代码[已公开]

id: tensorboard-unauth

info:
  name: Tensorboard Unauth
  author: p0wd3r
  severity: high
  verified: true
  reference:
    - https://github.com/tensorflow/tensorboard
  description: |-
    Tensorboard Unauthenticated
  tags: tensorboard,unauth
  created: 2023/07/07

rules:
  r0:
    request:
      method: GET
      path: /data/plugins_listing
      follow_redirects: true
    expression: response.status == 200 && response.content_type.contains("application/json") && response.body.bcontains(b"profile") && response.body.bcontains(b"distributions")
expression: r0()