Technotes

Technotes for future me

https

Mitigations

Perfect Forward Secrecy (PFS)

Public Key Pinning (HPKP)

  • HPKP - HTTP Public Key Pinning: Headers look like

    Public-Key-Pins-Report-Only
    
    Public-Key-Pins pin-<algorithm>="<hash>"; pin-<algorithm>="<hash>"; max-age=<age>[; includeSubdomains]
    
  • Creating SPKI fingerprints

    openssl x509 -noout -in certificate.pem -pubkey | \
    openssl asn1parse -noout -inform pem -out public.key;
    openssl dgst -sha256 -binary public.key | openssl enc -base64
    

OSCP

HTTPS Testing

SSL Performance

Last updated on 31 Jan 2021
Published on 25 Dec 2019
Edit on GitHub