browser-recon
{% with active='data' %}{% include 'partials/dashboard_nav.html' %}{% endwith %}
~/dashboard / your_data

Your scans & data

What we store: for each scan we keep your stated intent (encrypted at rest), the captured network blob, the LLM prompts + responses we generated, and the rendered report. Deleting a scan removes all five. This is irreversible.
{% if scans %} {% for s in scans %}
scan / {{ s.scan_id }}

{{ s.target_url }}

scan_id: {{ s.scan_id }} template: {{ s.starter_template }} created: {{ s.created_at_display }} status: {{ s.status }} {% if s.report_id %} report: /r/{{ s.report_id }} {% endif %}
{% if s.intent_text %}
{{ s.intent_text }}
{% else %}
(no intent recorded)
{% endif %}
{% endfor %} {% else %}
No scans yet.
{% endif %}