Forum Discussion
DP
Nimbostratus
Jun 21, 2018STARTTLS Proxy
Hi.
I'm trying to setup a TLSv1.0 -> TLSv1.2 proxy for STARTTLS SMTP traffic.
We need to disable TLSv1.0 and TLSv1.1, on STARTTLS sessions, for compliance reasons on our mail server.
Another requ...
Anesh
Cirrostratus
Jun 21, 2018try
when CLIENT_ACCEPTED {
SSL::disable
TCP::collect 3
}
when CLIENT_DATA {
if { [TCP::payload length] >= 3 } {
binary scan [TCP::payload 3] H* hex
log local0. "Payload in HEX: $hex"
switch $hex {
"160301" {
SSL::profile Legacy_Mail
SSL::enable
}
default {
SSL::enable
}
}
}
TCP::release
}
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects