securisation:securisation
Différences
Ci-dessous, les différences entre deux révisions de la page.
Prochaine révision | Révision précédente | ||
securisation:securisation [2018/07/31 09:42] – créée ronan | securisation:securisation [2018/09/11 08:51] (Version actuelle) – ronan | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
- | ====== Howto - certificats SSL ====== | + | |
- | + | * [[howtossl:Howto Certificats | |
- | ===== Extensions / filetypes ===== | + | * [[aide-rkhunter-logtail: |
- | + | | |
- | ==== .DER ==== | + | |
- | + | ||
- | The DER extension is used for binary DER encoded certificates. These files may also bear the CER or the CRT extension. Proper English usage would be “I have a DER encoded certificate” not “I have a DER certificate”. | + | |
- | + | ||
- | ==== .PEM ==== | + | |
- | + | ||
- | The PEM extension is used for different types of X.509v3 files which contain ASCII (Base64) armored data prefixed with a “—– BEGIN …” line. | + | |
- | + | ||
- | ==== .CRT ==== | + | |
- | + | ||
- | The CRT extension is used for certificates. The certificates may be encoded as binary DER or as ASCII PEM. The CER and CRT extensions are nearly synonymous. | + | |
- | + | ||
- | ==== .CER ==== | + | |
- | + | ||
- | Alternate form of .crt (Microsoft Convention) You can use MS to convert .crt to .cer (.both DER encoded .cer, or base64[PEM] encoded .cer) The .cer file extension is also recognized by IE as a command to run a MS cryptoAPI command (specifically rundll32.exe cryptext.dll, | + | |
- | + | ||
- | ==== .KEY ==== | + | |
- | + | ||
- | The KEY extension is used both for public and private PKCS#8 keys. The keys may be encoded as binary DER or as ASCII PEM. | + | |
- | The only time CRT and CER can safely be interchanged is when the encoding type can be identical. | + | |
- | + | ||
- | ===== Display certificate content ===== | + | |
- | Use the command that has the extension of your certificate replacing cert.xxx with the name of your certificate | + | |
- | + | ||
- | $ openssl x509 -in cert.pem -text -noout | + | |
- | $ openssl x509 -in cert.cer -text -noout | + | |
- | $ openssl x509 -in cert.crt -text -noout | + | |
- | + | ||
- | If you get the folowing error it means that you are trying to view a DER encoded certifciate and need to use the commands in the "View DER encoded certificate below" | + | |
- | + | ||
- | unable to load certificate | + | |
- | 12626:error: | + | |
- | + | ||
- | ===== View DER encoded Certificate ===== | + | |
- | + | ||
- | $ openssl x509 -in certificate.der -inform der -text -noout | + | |
- | + | ||
- | If you get the following error it means that you are trying to view a PEM encoded certificate with a command meant for DER encoded certs. Use a command in the "View PEM encoded certificate above" | + | |
- | + | ||
- | unable to load certificate | + | |
- | 13978: | + | |
- | 13978: | + | |
- | + | ||
- | ===== Transform ===== | + | |
- | + | ||
- | ==== PEM to DER ==== | + | |
- | + | ||
- | openssl x509 -in cert.crt -outform der -out cert.der | + | |
- | + | ||
- | ==== DER to PEM ==== | + | |
- | + | ||
- | openssl x509 -in cert.crt -inform der -outform pem -out cert.pem | + | |
- | + | ||
- | ===== Combination/ | + | |
- | + | ||
- | In some cases it is advantageous to combine multiple pieces of the X.509 infrastructure into a single file. One common example would be to combine both the private key and public key into the same certificate. The easiest way to combine certs keys and chains is to convert each to a PEM encoded certificate then simple copy the contents of each file into a new file. This is suitable for combining files to use in applications lie Apache. Some certs will come in a combined form. Where one file can contain any one of: Certificate, | + | |
- | + | ||
- | ==== Chained certificate ==== | + | |
- | + | ||
- | cat mycert.crt > chainedcert.crt | + | |
- | cat subauth.crt >> chainedcert.crt | + | |
- | cat auth.crt >> chainedcert.crt | + | |
- | + | ||
- | Pour les certificats une adresse, la meilleure solution pour configurer votre certificat afin de sécuriser votre nom de domaine avec et sans www (ex : exemple.com et www.exemple.com) est de générer votre CSR avec le domaine seulement et non avec le sous domaine www. En effet, lorsque vous générez votre CSR pour le domaine seul, cela implique également l' | + | |
- | Pour les certificats multidomaines; | + | |
- | + | ||
- | ===== Processus de demande de certificat ===== | + | |
- | + | ||
- | * générer la clef SSL (sans mot de passe) | + | |
- | + | ||
- | $ openssl genrsa -out monsite.dom-key.pem 2048 | + | |
- | $ openssl req -new -key monsite.dom-key.pem -out monsite.dom-req.pem | + | |
- | + | ||
- | Lors de cette étape, différentes questions vous seront posées afin de compléter la creation de la CSR et qui apparaîtront dans le certificat | + | |
- | + | ||
- | * **Common Name/Nom commun/CN :** secure.monsite.com | + | |
- | Le nom de domaine pleinement qualifié. Si vous avez l' | + | |
- | + | ||
- | * **Organization/ | + | |
- | Le nom légal et exact de votre organisation / entreprise. | + | |
- | Ne pas utiliser d' | + | |
- | * **Organization Unit/ | + | |
- | Département au sein de l' | + | |
- | * **City/ | + | |
- | La ville où votre entreprise est légalement établi. | + | |
- | * **State/ | + | |
- | La région où votre entreprise est légalement établie. | + | |
- | * **Country/ | + | |
- | Le code pays à 2 lettres où votre entreprise est légalement établie FR pour France. | + | |
- | **Attention :** ne pas saisir les attributs supplémentaires. | + | |
- | **Attention :** ne pas rentrer de mot de passe pour le challenge (appuyez simplement sur entrée) | + | |
- | + | ||
- | **Exemple :** | + | |
- | + | ||
- | Country Name (2 letter code) [AU]:FR | + | |
- | State or Province Name (full name) [Some-State]:Bretagne | + | |
- | Locality Name (eg, city) []:Lorient | + | |
- | | + | |
- | Organizational Unit Name (eg, section) []:marketing | + | |
- | | + | |
- | Email Address []: | + | |
- | + | ||
- | ===== Déchiffer une clef ===== | + | |
- | + | ||
- | openssl rsa < | + | |
- | openssl dsa < | + |
securisation/securisation.1533030160.txt.gz · Dernière modification : 2018/07/31 09:42 de ronan