Filter to check SSL/TLS version of email
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2019 01:30 AM
I want to know if there is any option or workaround to identify emails connecting with TLS v1.0 and SSL v3.0 using content or message filters ?
- Labels:
-
Email Security
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2019 02:28 AM
This is a bit harder to do and I would first start investigating by simply searching the mail log on the console like:
grep "SSLv3 cipher" mail_logs
grep "TLSv1 cipher" mail_logs
grep "TLSv1.1 cipher" mail_logs
grep "TLSv1.2 cipher" mail_logs
this gives you the ICID's of the incoming messages back matching your search pattern.
Then you need to grep this ICID in smtp_logs to get the corresponding MID back.
On a busy server there will be multiple MID associated to a given ICID.
Hope that helps with your analysis.
-Marc
