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

IP 具体详情

  • IP address: {{ data.target }}
  • Last record time: {{ data.published_from }}
  • {% if data.proper %}
  • 资产归属: {% for pp in data.proper %} {{ pp.0 }}  {% endfor %}
  • {% endif %}

{% if data.bugs %} {% endif %}
IP地址 {{ data.target }}
国家 {{ data.location.country }}
城市 {{ data.location.region }}
端口 / 服务 {% for info in data.infos %}
{{ info.port }}/{{ info.name|default:"unknown" }}
{% endfor %}
漏洞分布 {% for k,v in data.bugs.items %}
{{ k }}:{{ v }}
{% endfor %}
关联性
第三方信息
{{ third_infomation|safe }}
开放服务

{% for info in data.infos %} {% endfor %}
端口 服务类型 服务名称 版本
{{ info.port }} {{ info.name }} {{ info.product }} {{ info.version }} {{ info.extrainfo }}

关联域名

通过该ip关联到的http服务

    {% for u in union %}
  • {{ u.url }} {{ u.title }}
  • {% endfor %}
{% if c_data %}

通过该ip关联到的C段IP

    {% for u in c_data %}
  • {{ u.ip }}   {{ u.extrainfo }} {% if u.data %}
      {% for i in u.data %}
    • {{ i.url }} {{ i.title }}
    • {% endfor %}
    {% endif %}
  • {% endfor %}
{% endif %}

History

{% for h in historys %}

{{ h.target }}

{{ data.location.country }} {{ data.location.region }}
Open ports: {% for info in data.infos %} {{ info.port }}/{{ info.name|default:"unknown" }} {% endfor %}
{{ h.published_from }}
{% endfor %}
{% endblock %} {% block extrascript %} {% endblock %}