We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a953f32 commit 18675aaCopy full SHA for 18675aa
1 file changed
rules/network-troubleshoot.mdc
@@ -78,11 +78,15 @@ curl -I https://<target-host>/<path>
78
79
### TLS
80
81
+Linux/macOS:
82
+
83
```bash
84
openssl s_client -connect <target-host>:443 -showcerts </dev/null
85
echo | openssl s_client -connect <target-host>:443 2>/dev/null | openssl x509 -noout -dates
86
```
87
88
+Windows PowerShell:
89
90
```powershell
91
try {
92
$req = [Net.HttpWebRequest]::Create("https://<target-host>")
0 commit comments