View Issue Details

IDProjectCategoryView StatusLast Update
0008959CTT UA Scripts1 - Script Issuepublic2023-12-14 07:21
ReporterV. Monfort Assigned ToMichael Fehler  
PrioritynormalSeverityminorReproducibilityhave not tried
Status assignedResolutionopen 
Product Version1.04.501 
Summary0008959: Hostnames helper verification code seems incorrect
Description

UACTT V1.04.11-01.00.502 / library/ClassBased/UaP.js (L.140)

When the hostname of the certificate cannot be verified directly to be equal to the name/IP of the endpoint URL, the Hostnames helper is used to try to resolve the hostname provided in certificate. But it seems that the endpoint URL is not used anymore to do the verification which should be incorrect.

Original code:
<code javascript>
HOSTNAMES.QueryHostnames( serverCertificateHostName );
if( !HOSTNAMES.Contains( serverCertificateHostName ) )
</code javascript>

I guess the code should use serverEndpointUrlHostname instead to check URL is contained in results instead:
<code javascript>
HOSTNAMES.QueryHostnames( serverCertificateHostName );
if( !HOSTNAMES.Contains( serverEndpointUrlHostname ) )
</code javascript>

TagsNo tags attached.
Files Affected

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2023-05-12 15:47 V. Monfort New Issue
2023-05-19 15:02 Paul Hunkar Assigned To => Alexander Allmendinger
2023-05-19 15:02 Paul Hunkar Status new => assigned
2023-12-14 07:21 Michael Fehler Assigned To Alexander Allmendinger => Michael Fehler