{% extends "_base.html" %}
{% block content %}
Server configuration
  
    Euscan config
  
  {% for key, value in CONFIG.items %}
  
    | {{ key }} | 
    {{ value }} | 
  
  {% endfor %}
  
    Versions blacklist
  
  {% for item in BLACKLIST_VERSIONS %}
  
    | {{ item }} | 
  
  {% endfor %}
  
    Packages blacklist
  
  {% for item in BLACKLIST_PACKAGES %}
  
    | {{ item }} | 
  
  {% endfor %}
  
    Scandir blacklist
  
  {% for item in SCANDIR_BLACKLIST_URLS %}
  
    | {{ item }} | 
  
  {% endfor %}
  
    Bruteforce packages blacklist
  
  {% for item in BRUTEFORCE_BLACKLIST_PACKAGES %}
  
    | {{ item }} | 
  
  {% endfor %}
  
    Bruteforce urls blacklist
  
  {% for item in BRUTEFORCE_BLACKLIST_URLS %}
  
    | {{ item }} | 
  
  {% endfor %}
  
    Robots.txt domain blacklist
  
  {% for item in ROBOTS_TXT_BLACKLIST_DOMAINS %}
  
    | {{ item }} | 
  
  {% endfor %}
{% endblock %}