Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zimbres/checkserverssl
REST API to retrieve data from a SSL/TLS server over TCP
https://github.com/zimbres/checkserverssl
Last synced: 6 days ago
JSON representation
REST API to retrieve data from a SSL/TLS server over TCP
- Host: GitHub
- URL: https://github.com/zimbres/checkserverssl
- Owner: zimbres
- License: mit
- Created: 2024-08-04T16:23:15.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-04T16:42:44.000Z (5 months ago)
- Last Synced: 2024-12-24T12:18:32.225Z (11 days ago)
- Language: C#
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Check Server SSL
REST API endpoint that establishes a TCP connection to an SSL/TLS server, sends data, and returns the server's response. Additionally, the API should retrieve and include the server's certificate details in the response.
---
### Response example:
```json
{
"serverResponse": "HTTP/1.0 400 Bad Request",
"certificate": {
"commonName": "*.google.com",
"issuer": "CN=WR2, O=Google Trust Services, C=US",
"subject": "CN=*.google.com",
"notBefore": "2024-07-30T09:32:53-03:00",
"notAfter": "2024-10-22T09:32:52-03:00",
"thumbprint": "A95208E0FC37B46B5FCFC5ABC410C7D6004DDC69",
"serialNumber": "718DF8A4D1488A7809CCED27107D8184",
"isExpired": false
}
}```