DjangoAdminHackers / django-linkcheck

An app that will analyze and report on links in any model that you register with it. Links can be bare (urls or image and file fields) or embedded in HTML (linkcheck handles the parsing). It's fairly easy to override methods of the Linkcheck object should you need to do anything more complicated (like generate URLs from slug fields etc).
BSD 3-Clause "New" or "Revised" License
75 stars 26 forks source link

Unreachable domains incorrectly shown as valid SSL certificate #184

Closed timobrembeck closed 1 year ago

timobrembeck commented 1 year ago

When e.g. the external link https://10.0.0.0 is checked, the status is correctly identified as False and the error message is correct, but the ssl_status is incorrectly set to True, which does not make sense. The SSL certificate is never being checked in the first place since the domain is unreachable, so None would be a much more appropriate status.