- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-15-2022 04:44 PM
I got following notification form ServiceNow:
Beginning with the Now Platform® Utah release planned for March 2023, ServiceNow MID Server offering will no longer support TLS 1.1 or below.
TLS 1.2 and newer protocols will not be impacted, and no action is needed. However, if you utilize TLS 1.1 or below, please take a moment to review the below.
How do we know which version of TLS is being used?
Thank you.
Solved! Go to Solution.
- Labels:
-
Discovery

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-15-2022 06:23 PM
Open ServiceNow page.
If using Chrome, press the F12 key.
Select the "Security" tab and look for TLS.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-16-2022 07:34 AM
I found that KB to be not of much use since it is checking the TLS version supported by the instance.
The notification is in reference to MID Servers and there is a lack of information of how/where to check this in the information provided.
I have raised a support case to ask for this instead.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-16-2022 11:30 AM
Please do let us know what they say. I am also curious.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-16-2022 05:07 PM
I haven't explained clearly enough. Just substitute ServiceNow's url with MID Server's url.
C) TLS1.2 --> curl -v -s https://{MID Server IP} -o /dev/null/ 2>&1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-16-2022 06:25 PM
Thank you. Also, where should I execute this command? I tried in Windows cmd prompt, but it didn't gave any result on screen, neither any error.
This is what I found in my system32 folder, a file with name curl with following content:
'TLS1.2' is not recognized as an internal or external command,
operable program or batch file.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-16-2022 09:48 PM
From PowerShell, execute the following command. If tls1.2 isn't supported, it should return an error.
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$response = Invoke-WebRequest -uri <MID Server URL>
$response.BaseResponse