Are there any public web services that will check for an MTLS cert and response with application/json
Asked Answered
L

1

10

A different thread pointed out a couple of services that would require a client MTLS certificate, accept any cert, and then respond with information about the SSL handshake/certs.

HTTPS test server that checks client certificates

These endpoints both return HTML. Does anyone know of anything similar that returns application/json?

Loading answered 27/6, 2019 at 20:52 Comment(3)
I never found such a service so I ended up creating my own. If there is much interest I can see about making it public.Loading
please release it and post an answer :)Survive
I am working on releasing it, but it may be another couple of weeks before I make much progress on it.Loading
J
10

The URLs below will return application/json content upon successfully mutual TLS client certificate authentication. If no authentication is peformed, then HTTP error 403 is returned in the HTTP headers and the response is empty:

The json returned in case of success contains various technical information about the established connection.

Jodhpur answered 26/3, 2021 at 22:20 Comment(1)
Is there a documentation on how to perform the http call?Kayleigh

© 2022 - 2024 — McMap. All rights reserved.