laptop and a wrench

漏洞

Portal for ArcGIS 11.3: The URL parameter data_version in ArcGIS Experience Builder is double-encoded, causing improper version parsing and resulting in incorrect switching of branch versions.

ArcGIS Experience Builder
漏洞 ID 编号 BUG-000171477
已提交October 14, 2024
上次修改时间August 5, 2025
适用范围ArcGIS Experience Builder
找到的版本11.3
操作系统Windows Server
操作系统版本2019 64 Bit
状态In Product Plan

解决办法

Decode the data_version parameter manually:

  • In ArcGIS Experience Builder app, modify the code to decode the data_version URL parameter before it is processed by the widget.
  • Use the decodeURIComponent() function to ensure that double-encoded characters, such as %25253A, are correctly decoded into : (colon), allowing the widget to recognize and handle the versions properly.

Example:

const decodedVersion = decodeURIComponent(t.data_version);

const versionParts = decodedVersion.split(":");

this.setState({

urlStartUpVersion: versionParts[1] // Use the correct part of the version

});

重现步骤

漏洞 ID: BUG-000171477

软件:

  • ArcGIS Experience Builder

当漏洞状态发生变化时获得通知

下载 Esri 支持应用程序

发现关于本主题的更多内容

获取来自 ArcGIS 专家的帮助

联系技术支持部门

下载 Esri 支持应用程序

转至下载选项