{% if session['theme'] == 'darkmode' %} {% extends "base_dark.html" %} {% else %} {% extends "base.html" %} {% endif %} {% block title %}IP Checker{% endblock %} {% block content %}
{{ error }}
{% endif %} {% if ip_data %}| Feld | Wert |
|---|---|
| IP-Adresse | {{ ip_data.get('ip', 'N/A') }} |
| VPN | {{ 'Ja' if ip_data['security'].get('vpn', False) else 'Nein' }} |
| Proxy | {{ 'Ja' if ip_data['security'].get('proxy', False) else 'Nein' }} |
| Tor | {{ 'Ja' if ip_data['security'].get('tor', False) else 'Nein' }} |
| Land | {{ ip_data['location'].get('country', 'N/A') }} |
| Stadt | {{ ip_data['location'].get('city', 'N/A') }} |
| ASN | {{ ip_data['network'].get('autonomous_system_number', 'N/A') }} |
| Netzwerk | {{ ip_data['network'].get('network', 'N/A') }} |
| IP-Adresse | Stadt | ASN | SteamID |
|---|---|---|---|
| {{ ip['ip'] }} | {{ ip['data']['location'].get('city', 'N/A') }} | {{ ip['data']['network'].get('autonomous_system_number', 'N/A') }} | {{ ip.get('steam_id', 'N/A') }} |
| IP-Adresse | Stadt | ASN | SteamID |
|---|---|---|---|
| {{ ip['ip'] }} | {{ ip['data']['location'].get('city', 'N/A') }} | {{ ip['data']['network'].get('autonomous_system_number', 'N/A') }} | {{ ip.get('steam_id', 'N/A') }} |