Completed
Last Updated: 22 Dec 2021 06:37 by ADMIN
Eric
Created on: 28 Oct 2021 23:36
Type: Bug Report
0
TLS Handshake Analyzer has off-by-one in supported_versions

The GetSupportedVersions function inside HTTPSUtilities has an off-by-one error in the parser that results in omitting the final value in the list.

Instead of code like this:

    for (int index = 1; index < arrSupported.Length - 2; index += 2)

 

the code should instead be:

 

    for (int index = 1; index <= arrSupported.Length - 2; index += 2)

3 comments
Eric
Posted on: 21 Dec 2021 16:48
Hey, Nick-- I'm just saying that your release notes show this issue as fixed, but its status in this tracker is still just PLANNED.
ADMIN
Nick Iliev
Posted on: 21 Dec 2021 09:49

Hey Eric,

 

Can you elaborate more on the issue? The latest version of Fiddler Classic contains a fix and it looks like that the supported versions are outputted as expected (refer to the attached screenshot that compares the old version vs the latest version).

 

Regards,
Nick Iliev
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Attached Files:
Eric
Posted on: 20 Dec 2021 15:32
This was marked FIXED for the December 2021 update.