@include(snippets/header)
Back to Admin Dashboard

Ban & Fingerprint Manager

Inspect, track, and manage OpenSSH key fingerprints, IP bans, anonymous identities, and audit activity.

Banned Fingerprints
{{ bannedFingerprints ? bannedFingerprints.length : 0 }}
Banned Hardware IDs
{{ bannedHardware ? bannedHardware.length : 0 }}
Banned IP Addresses
{{ bannedIps ? bannedIps.length : 0 }}
Known Anonymous Keys
{{ anonIdentities ? anonIdentities.length : 0 }}
Recent Logged Actions
{{ recentActivity ? recentActivity.length : 0 }}
@if(bannedFingerprints && bannedFingerprints.length > 0) @each(bannedFingerprints as fp) @endeach @else @endif
Fingerprint Linked Account Reason Banned By Date Expires Action
{{ fp.fingerprint }}
@if(fp.anon_login) {!! fp.anon_user || fp.anon_login !!} @else @endif {{ fp.reason || 'No reason specified' }} {{ fp.banned_by_user || 'System / Admin' }} {{ fp.created_at ? new Date(fp.created_at).toLocaleString() : '—' }} @if(fp.expires_at) {{ new Date(fp.expires_at).toLocaleString() }} @else Permanent @endif
No banned fingerprints.
@include(snippets/footer)