{% extends "sidebar.html" %} {% block title %}AstraOS — IP Analyzer{% endblock %} {% block head %} {% endblock %} {% block content %}

IP Analyzer

Als Cheater markieren

Markiert diese IP als zu einem Cheater gehörig.

{% if error %}
{{ error }}
{% endif %} {% if ip_data %}

Analyse-Ergebnis

IP-Adresse: {{ ip_data.ip }}
Land: {{ ip_data.location.country }} ({{ ip_data.location.city }})
VPN: {{ 'Ja' if ip_data.security.vpn else 'Nein' }}
Proxy: {{ 'Ja' if ip_data.security.proxy else 'Nein' }}
Tor: {{ 'Ja' if ip_data.security.tor else 'Nein' }}
ASN: {{ ip_data.network.autonomous_system_number }}
Netzwerk: {{ ip_data.network.network }}
Organisation: {{ ip_data.network.autonomous_system_organization }}
{% endif %} {% if similar_ips %}

Ähnliche Einträge gefunden

{% for ip in similar_ips %} {% endfor %}
IP Cheater SteamID Hinzugefügt von Datum
{{ ip.ip }} {{ 'Ja' if ip.is_cheater else 'Nein' }} {{ ip.steam_id or 'N/A' }} {{ ip.added_by }} {{ ip.timestamp.strftime('%d.%m.%Y %H:%M') }}
{% endif %}
{% endblock %}