{% extends 'frontend/base.html' %} {% load app_icon %} {% block content %}

Domain 域名具体详情

  • 域名: {{ data.url }}
  • 子域名个数: {{ sub_domain|length }}
  • Last record time: {{ data.published_from }}
  • {% if data.proper %}
  • 资产归属: {% for pp in data.proper %} {{ pp.0 }}  {% endfor %}
  • {% endif %}

  • Ip: {% if ip_data %} {{ ip_data.ip }} {% else %} {{ data.ip }} {% endif %}
  • {% for u in uldata %}
  • {{ u.0 }}: {{ u.1 }}
  • {% endfor %}
{% if data.bugs %}

漏洞详情

    {% for k,v in data.bugs.items %}
  • {{ k }} : {{ v }}
  • {% endfor %}
{% endif %} {% if data.app %}

使用技术


    {% for app in data.app %}
  • {{ app|app_icon|safe }} {{ app }}
  • {% endfor %}
{% endif %}
{{ data.headers }}

{{ data.body }}
子域名
    {% for domain in sub_domain %}
  • {{ domain.url }}    {% if domain.title %}{{ domain.title|truncatewords:30 }}{% endif %}
      {% if domain.ip %}
    • ip:{{ domain.ip }}
    • {% endif %} {% if domain.app %}
    • {% for app in domain.app %} {{ app|app_icon|safe }} {% endfor %}
    • {% endif %} {% if domain.bugs %}
    • {% endif %}
  • {% endfor %}

History

{% for h in historys %}

{{ h.url }}

ip:{{ h.ip }} {% if h.title %}
Title: {{ data.title }} {% endif %} {% if h.app %}
{% for app in h.app %} {{ app|app_icon|safe }} {% endfor %} {% endif %}
{{ h.published_from }}
{% endfor %}
Third information
{{ third_infomation|safe }}
{% endblock %} {% block extrascript %} {% endblock %}