Core: - paths.py: centralized ~/.soosef/ path constants - config.py: JSON config loader with dataclass defaults - exceptions.py: SoosefError hierarchy - cli.py: unified Click CLI wrapping stegasoo + verisoo + native commands Keystore: - manager.py: unified key management (Ed25519 identity + channel keys) - models.py: IdentityInfo, KeystoreStatus dataclasses - export.py: encrypted key bundle export/import for USB transfer Fieldkit: - killswitch.py: ordered emergency data destruction (keys first) - deadman.py: dead man's switch with check-in timer - tamper.py: SHA-256 file integrity baseline + checking - usb_monitor.py: pyudev USB whitelist enforcement - geofence.py: haversine-based GPS boundary checking Web frontend (Flask app factory + blueprints): - app.py: create_app() factory with context processor - blueprints: stego, attest, fieldkit, keys, admin - templates: base.html (dark theme, unified nav), dashboard, all section pages - static: CSS, favicon Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
59 lines
2.6 KiB
HTML
59 lines
2.6 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Fieldkit Status — SooSeF{% endblock %}
|
|
{% block content %}
|
|
<h2><i class="bi bi-speedometer2 me-2"></i>Fieldkit Status</h2>
|
|
<p class="text-muted">Security monitors and system health.</p>
|
|
|
|
<div class="row g-4">
|
|
{# Dead Man's Switch #}
|
|
<div class="col-md-6">
|
|
<div class="card bg-dark border-secondary">
|
|
<div class="card-body">
|
|
<h5 class="card-title">
|
|
<i class="bi bi-clock-history me-2"></i>Dead Man's Switch
|
|
{% if deadman_status.armed %}
|
|
{% if deadman_status.overdue %}
|
|
<span class="badge bg-danger ms-2">OVERDUE</span>
|
|
{% else %}
|
|
<span class="badge bg-success ms-2">Armed</span>
|
|
{% endif %}
|
|
{% else %}
|
|
<span class="badge bg-secondary ms-2">Disarmed</span>
|
|
{% endif %}
|
|
</h5>
|
|
{% if deadman_status.armed %}
|
|
<p class="text-muted small">
|
|
Interval: {{ deadman_status.interval_hours }}h
|
|
({{ deadman_status.grace_hours }}h grace)<br>
|
|
Last check-in: {{ deadman_status.last_checkin or 'Never' }}<br>
|
|
{% if deadman_status.get('next_due') %}
|
|
Next due: {{ deadman_status.next_due }}
|
|
{% endif %}
|
|
</p>
|
|
<form method="POST" action="{{ url_for('fieldkit.deadman_checkin') }}">
|
|
<button type="submit" class="btn btn-success btn-sm">
|
|
<i class="bi bi-check-circle me-1"></i>Check In Now
|
|
</button>
|
|
</form>
|
|
{% else %}
|
|
<p class="text-muted small">Not currently armed. Enable in config or via CLI.</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{# Killswitch #}
|
|
<div class="col-md-6">
|
|
<div class="card bg-dark border-secondary">
|
|
<div class="card-body">
|
|
<h5 class="card-title"><i class="bi bi-exclamation-octagon me-2 text-danger"></i>Killswitch</h5>
|
|
<p class="text-muted small">Emergency data destruction. Destroys all keys, attestation logs, and auth data.</p>
|
|
<a href="{{ url_for('fieldkit.killswitch') }}" class="btn btn-outline-danger btn-sm">
|
|
<i class="bi bi-exclamation-octagon me-1"></i>Killswitch Panel
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|