{% extends "base.html" %} {% block title %}upbox ยท transparency{% endblock %} {% block sidebar %} {% include "partials/sidebar.html" %} {% endblock %} {% block main %}

What upbox holds about this machine's user

Generated {{ report.generated_at }} by upbox {{ report.upbox_version }} on {{ report.hostname }} for OS user {{ report.os_user }}. Database {{ report.database_path }}. Controller and contact: to be completed by the deployer.

1. Purpose

upbox is a deployer-side network observer. It records the requests that AI tools on this machine make to their cloud services, replaces secrets before forwarding, and keeps a tamper-evident audit log so you can see and control what left the machine. This page is not legal advice.

2. Categories of data and whether they are stored

CategoryStored
Timestamp of each request (host wall clock)stored
Tool that made the requeststored
Destination hoststored
Path, with credential values in the query string removedstored
Request and response sizes, HTTP statusstored
Request headers, credential values replaced by a marker{{ 'stored' if report.capture_headers else 'not stored (capture policy)' }}
Request body excerpt, up to {{ report.body_excerpt_max | bytes }} after redaction{{ 'stored' if report.capture_bodies else 'not stored (capture policy)' }}
SHA-256 of the full redacted bodystored
Redaction and allowlist outcomesstored

Rows whose body or headers were never stored under the capture policy: {{ report.rows_with_omitted_content }}.

3. Recipients

{{ report.total_rows }} request(s) recorded{% if report.first_ts %} between {{ report.first_ts }} and {{ report.last_ts }}{% endif %}, {{ report.total_req_bytes | bytes }} of request data in total.

{% if report.recipients %} {% for r in report.recipients %} {% endfor %}
ToolHostRequestsBytesFirst seenLast seen
{{ r.tool }}{{ r.host }}{{ r.requests }}{{ r.req_bytes | bytes }}{{ r.first_seen }}{{ r.last_seen }}
{% else %}

None recorded.

{% endif %}

4. Retention

5. Erasures on request

{% if report.erasures %} {% else %}

None.

{% endif %}

6. Integrity

7. Your rights and how to exercise them

8. Limitations

9. As a file

Run upbox report -o report.md for the hand-over document.

{% endblock %}