Not able to reach https://ssldecoder.org
mayankvol opened this issue · comments
Hi,
In my code I have use ssdecoder. now, my code breaks up. From debugging i found that code not able to reach 'https://ssldecoder.org'.
Please help me out.
See https://raymii.org/s/blog/Cancellation_notice_for_cipherlist_ssldecoder_and_certificatemonitor.html
As alternative solutions I have setup https://cipherlist.daniel-ruf.de and https://ssldecoder.daniel-ruf.de and I plan to manage them for a long time.
You might also like to try https://github.com/DanielRuf/website-checks
Sorry I missed this issue, my Github notifications are broken.
You can change the endpoint in the configuration. When you use the one set up by @DanielRuf you can use this code to get it working:
var ssldecoder = require ('ssldecoder') ({
endpoint: 'https://ssldecoder.daniel-ruf.de',
});
ssldecoder.host ('myhostname.net', (err, data) => {
if (err) return console.error (err);
console.dir (data, {
depth: null,
colors: true,
});
});