Forum Discussion

paulpatriot_129's avatar
paulpatriot_129
Icon for Nimbostratus rankNimbostratus
Oct 20, 2014

Log SSLv3 TRAFFIC

Does anyone know an IRULE that captures clients using SSLv3 and sends it to the log?

 

5 Replies

  • shaggy's avatar
    shaggy
    Icon for Nimbostratus rankNimbostratus

    This locally logs SSLv3 handshakes and the associated client-IP

    when CLIENTSSL_HANDSHAKE {
      if {[SSL::cipher version] eq "SSLv3"}{
      log local0. "[IP::client_addr] [SSL::cipher version]"
    }
    }
    
    • David_Jones_227's avatar
      David_Jones_227
      Icon for Nimbostratus rankNimbostratus
      I used this for identifying TLSv1 clients, just replaced SSLv3 with TLSv1 and it works great. Logs to /var/log/ltm.
  • This locally logs SSLv3 handshakes and the associated client-IP

    when CLIENTSSL_HANDSHAKE {
      if {[SSL::cipher version] eq "SSLv3"}{
      log local0. "[IP::client_addr] [SSL::cipher version]"
    }
    }
    
    • David_Jones_227's avatar
      David_Jones_227
      Icon for Nimbostratus rankNimbostratus
      I used this for identifying TLSv1 clients, just replaced SSLv3 with TLSv1 and it works great. Logs to /var/log/ltm.