SERVERSSL_HANDSHAKE

Description

Triggered when a server-side SSL handshake is completed.

Examples

when SERVERSSL_HANDSHAKE {
   # Trigger collection of the decrypted payload once the SSL handshake has been completed successfully
   SSL::collect
}
when SERVERSSL_DATA {
   # Do something with the decrypted data
   set payload [SSL::payload]

   # Release the payload
   SSL::release
}