PT-2026-41609 · Pypi · Netbox-Data-Flows

Publicado

2026-05-07

·

Atualizado

2026-05-07

CVSS v3.1

8.7

Alta

VetorAV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:N

Summary

An authenticated user who can create or edit ObjectAlias objects can store arbitrary HTML/JavaScript in an alias name. That payload is later rendered unescaped in DataFlow table views, causing a stored XSS when another user views the affected page.

Details

The issue is caused by unsafe HTML generation in the plugin’s custom table column renderer.
Relevant code on main (bf96eac, same commit as origin/main at the time of review):
  • netbox data flows/models/objectaliases.py
  • ObjectAlias.name is user-controlled (CharField)
  • ObjectAlias. str () returns self.name directly
  • netbox data flows/tables/dataflows.py
  • DataFlowTable.sources and DataFlowTable.destinations use ObjectAliasListColumn
  • netbox data flows/tables/columns.py
  • ObjectAliasListColumn.render() calls object list to string(value.all(), linkify=True)
  • netbox data flows/utils/helpers.py
  • object list to string() builds raw anchor tags with:
python
mark safe(separator.join(f'<a href="{o.get absolute url()}">{o}</a>' for o in objects))
The alias text ({o}) is inserted into HTML without escaping, then the whole string is marked safe. Because ObjectAlias. str () returns the user-supplied name, HTML/JS in the alias name is executed in the victim’s browser.
This affects any page rendering DataFlowTable, including at least:
  • the main Data Flow list page
  • model tabs that reuse DataFlowTable

PoC

Environment:
  • NetBox with netbox-data-flows installed
  • No special plugin configuration required
Steps:
  1. Log in as a user with permission to create or edit ObjectAlias and DataFlow.
  2. Create a new ObjectAlias with the following name:
html
<img src=x onerror=alert(document.domain)>
  1. Create or edit a DataFlow so this alias is present in either sources or destinations.
  2. Log in as another user and open the Data Flow list page in the plugin UI.
  3. The JavaScript executes when the table renders the alias list.
A simple path to trigger is the Data Flow list page. Any other page that renders DataFlowTable should also be tested.

Impact

This is a stored cross-site scripting vulnerability.
Impacted users:
  • any authenticated user who can view a page rendering the affected DataFlow table
  • especially higher-privileged NetBox users, because an attacker with lower privileges may target them by planting a malicious alias name
Possible impact:
  • session theft
  • execution of privileged actions in the victim’s session
  • exfiltration of data visible to the victim in NetBox

Correção

XSS

Encontrou algum problema na descrição? Tem algo a acrescentar? Fique à vontade para nos escrever 👾

Enumeração de Fraquezas

Identificadores relacionados

GHSA-V7QW-HX66-4W9X

Produtos afetados

Netbox-Data-Flows