initial commit

This commit is contained in:
Yann Verry 2024-05-10 23:08:07 +02:00
commit 5eed6acb44
12 changed files with 142 additions and 0 deletions

View file

View file

@ -0,0 +1,11 @@
+++
title = 'Curl'
date = 2024-05-10T23:03:19+02:00
+++
# Forcer une IP spécifique
```bash
curl --resolve monsuperhostname:443:masuperip https://monsuperhostname
```

View file

@ -0,0 +1,24 @@
+++
title = 'Openssl'
date = 2024-05-10T22:59:58+02:00
+++
## OCSP stapling
## Client web
```bash
openssl s_client <ip>:<port> -servername <hostname>
```
## Vérifier
vérifier un certificat
# TLS
## TLS v1.0 max
```bash
openssl s_client -tls1 -servername
```