Forum Discussion

Moinul_Rony's avatar
Moinul_Rony
Icon for Altostratus rankAltostratus
Apr 18, 2023
Solved

Best way to pass http header by iRule containing Client TLS information

Hi All, 

We are planning to identify TLS connection information from clients. ie: TLS version, CIPHER suits

How can we trap and pass through this client information via HTTP header so application team can analyse.

Thanks.

  • Hi Moinul_Rony,

    when HTTP_REQUEST {
    	HTTP::header insert X-Forwarded-TLSVersion [SSL::cipher version]
    	HTTP::header insert X-Forwarded-CipherName [SSL::cipher name]
    	HTTP::header insert X-Forwarded-CipherBits [SSL::cipher bits]
    }

     

3 Replies