Cryptosense Discovery
Posted by jpluimers on 2022/03/15
This is cool: [Wayback] Cryptosense Discovery:
Free tool that discovers security configuration errors in SSH and TLS servers and explains how to fix them. Supports STARTTLS and can also scan HTTPS, POP3, IMAP and SMTP servers.
It gives you a list of servers a target domain uses (for purposes like web, email, etc) that can have external encryption enabled, then allows you to test these.
The list by default has only servers within that target domain enabled, but you can optionally include other servers (for instance if a domain uses a third party for their SMTP handling).
Basically it is the web-counterpart of a tool like testssl.sh
(which I have written about before).
Found while checking out how to test the MX security of a domain using [Wayback] testssl.sh
as I forgot the syntax, which in retrospect is dead easy as per [Wayback] tls – How to use testssl.sh on an SMTP server? – Information Security Stack Exchange (thanks [Wayback] Z.T.!):
…
testssl.sh --mx <domain name>
works fine.
testssl.sh -t smtp <ip>:25
and
testssl.sh -t smtp <ip>:587
also work fine.
Note that not specifying the port assumes port 443, despite specifying protocol
smtp
. That doesn’t work.…
Also, you might try discovery.cryptosense.com which does the same thing only better
That website is made by the cool people at [Wayback] Cryptosense.
Both are a lot easier than the alternatives described in [Wayback] Blog · How to test SMTP servers using the command-line · Halon MTA: using nslookup
and dig
for determining the affected hosts, using nc
or telnet
for testing basic connectivity, using [Wayback/Archive.is] openssl s_client
to test TLS, and [Wayback/Archive.is] smtpping
for measuring throughput.
In addition to the above tools mentioned in the blog, I’ve also used
sendEmail
(note case sensitivity),ehlo-size
, andswaks
.
This is what I tested:
- [Wayback] Cryptosense Discovery: clientondersteuningplus.nl
We found these machines for
clientondersteuningplus.nl
. Select those you would like to scan:clientondersteuningplus.nl
185.37.70.68
localhost.clientondersteuningplus.nl
127.0.0.1
pop.clientondersteuningplus.nl
5.157.84.75
These machines are also used by
clientondersteuningplus.nl
. They seem to be managed by a third party:…
–jeroen
Leave a Reply