{% extends 'layouts/master-page' %} {% block title %}Error{% endblock %} {% block content %}
{% if status['except']=='redis-connection' %}

This page can not be displayed due to an error

Unable to connect to Redis. Is it running on {{status['info']['host']}}:{{status['info']['port']}}?

{% elif status['except']=='hosts-found' %}

No Hosts

There is no hosts in the Ivulncheck database. This could mean that ivulncheck-agent were not executed or that the database is not reachable

{% elif status['except']=='host-found' %}

No Host {{ status['info']['host'] }}

There is no host {{ status['info']['host'] }} in the Ivulncheck database. This could mean that ivulncheck-agent was not executed on {{ status['info']['host'] }} or that the database is not reachable

{% elif status['except']=='vulns-found' %}

No Vulns

There is no vulns in the Ivulncheck database. This could mean that vulnerability check was not launched or that the database is not reachable

{% elif status['except']=='fixes-found' %}

No Fixes

There is no fixes in the Ivulncheck database. This could mean that fix check was not launched or that the database is not reachable

{% elif status['except']=='host-vulns-found' %}

No Vulns on Host {{ status['info']['host'] }}

There is no vulns for host {{ status['info']['host'] }} in the Ivulncheck database. This could mean that ivulncheck-agent was not executed on {{ status['info']['host'] }} or that vulnerability check was not launched after Host {{ status['info']['host'] }} was inserted or that the database is not reachable

{% elif status['except']=='host-fixes-found' %}

No Fixes on Host {{ status['info']['host'] }}

There is no fixes for host {{ status['info']['host'] }} in the Ivulncheck database. This could mean that Host {{ status['info']['host'] }} is up to date and there is no unfixed vulnerability (impossible) ivulncheck-agent was not executed on {{ status['info']['host'] }} or that fix check was not launched after Host {{ status['info']['host'] }} was inserted or that the database is not reachable

{% elif status['except']=='checks-found' %}

Unable to launch check {{ status['info']['action'] }}

Command check {{ status['info']['action'] }} failed on Ivulncheck API. This could mean that the check script is in error or that the database is not reachable

{% elif status['except']=='calcstats-found' %}

Unable to calculate stats for host {{ status['info']['hostname'] }}

Calculate stats for host {{ status['info']['hostname'] }} failed on Ivulncheck API. This could mean that the host does not exist or that the database is not reachable

{% elif status['except']=='api-error' %}

Ivulncheck API Error

Unable to get response to Ivulncheck API : {{status['info']}}

{% endif %}
{% endblock %}