API Reference
Base URL: http://localhost:8000
All endpoints return Content-Type: application/json unless noted. Errors return {"error": "<message>"} with the appropriate HTTP status code.
GET Endpoints
GET /
Redirects to /socrates.html.
GET /api/version
Returns the running SO-CRATES version.
Response: {"version": "4.1.0"}
GET /api/version-check
Checks GitHub's releases API for a newer SO-CRATES version. Only ever called by the frontend if the user has opted in (the "Check GitHub for newer releases" checkbox in the About modal, or its manual "Check Now" button) - never fetched automatically otherwise.
Response: {"currentVersion": "<version>", "latestVersion": <string or null>, "updateAvailable": <boolean>} - latestVersion/updateAvailable stay null/false on any failure to reach GitHub (never surfaces an error to the caller).
GET /api/theme
Reads the active OhMyDebn theme's name and color palette, for the opt-in "Sync theme to OhMyDebn theme" feature. A no-op (theme/customColors both null) unless the OHMYDEBN_THEME_DIR environment variable is set.
Response: {"theme": <string or null>, "customColors": <object or null>} - theme is the raw theme name (from <OHMYDEBN_THEME_DIR>/current/theme.name) if it's set and passes a loose name-format check, else null. customColors is a set of ~25 CSS custom-property name/hex-value pairs synthesized from the theme's colors.toml/alacritty.toml palette (see Themes), or null if no theme directory is configured or no palette could be derived.
GET /api/theme-sync-available
Tells the frontend whether the "Sync theme to OhMyDebn theme" toggle could ever do anything, so it isn't shown as a dead control on deployments not launched via OhMyDebn.
Response: {"available": <boolean>} - true iff OHMYDEBN_THEME_DIR is set and its current/theme.name file is currently readable (regardless of whether its contents are valid - that's /api/theme's concern).
GET /api/events
Returns event data from Suricata's eve.json (via SQLite index or direct JSON parse).
Query Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
md5 |
No | none | MD5 hash of a historical analysis (returns an empty array if omitted) |
type |
No | all | Filter by event type - any event_type Suricata's eve.json can produce (see Event Types), plus the app's own synthetic types (filealerts, log, sigmaalert, protocol_decode) |
q |
No | none | Full-text search query (searches all event JSON). Multiple q params AND together. |
offset |
No | 0 |
Pagination offset |
limit |
No | 1000 |
Max events to return (capped at MAX_QUERY_LIMIT, 100,000 by default - see GET /api/limits) |
order_by |
No | none (sorts by timestamp) |
Server-side sort column, e.g. Source IP. Only sortable for columns with a static JSON path for the given type (mirrors the same source-of-truth constraint as GET /api/aggregation-data); silently falls back to timestamp if the column isn't server-sortable for that type, rather than erroring |
sort_dir |
No | asc |
asc or desc; any other value is treated as asc |
acknowledged |
No | none | only returns only acknowledged rows (see POST /api/acknowledge-alert) instead of the default, which excludes them entirely - used solely by the Acknowledged Alerts tab's own fetches |
Response: Array of eve.json event objects. Any event with a saved row-level
note (see POST /api/row-note) includes an extra row_note field with the
note text; events with no note omit the field entirely rather than sending
an empty string.
Example:
GET /api/events?type=alert&limit=100
GET /api/events?q=192.168.1.1
GET /api/events?type=http&q=GET
GET /api/events?q=tcp&q=80 # AND: events containing both "tcp" and "80"
GET /api/stats
Returns event-type counts for the current or specified analysis.
Query Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
md5 |
Yes | - | MD5 hash of a historical analysis |
q |
No | none | Full-text search query (counts only matching events). Multiple q params AND together. |
Response: {"counts": <event type to count map>, "date_range": {"min": <timestamp or null>, "max": <timestamp or null>}}
Example:
{"counts": {"alert": 42, "dns": 1500, "http": 380, "tls": 95, "flow": 2200},
"date_range": {"min": "2026-02-03T11:13:50.123456+0000", "max": "2026-02-03T11:16:02.654321+0000"}}
GET /api/count
Returns total event count, optionally filtered by type or search query.
Query Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
md5 |
Yes | - | MD5 hash of a historical analysis |
type |
No | all | Filter by event type |
q |
No | none | Full-text search query (counts only matching events). Multiple q params AND together. |
acknowledged |
No | none | only counts only acknowledged rows instead of excluding them - see GET /api/events's own acknowledged param |
Response: {"count": <number>}
GET /api/limits
Returns server-enforced limits the client should respect (e.g. when validating the user-configurable query-limit setting).
Response: {"maxQueryLimit": <number>, "maxUploadSize": <number>} - MAX_QUERY_LIMIT (100,000 by default) and MAX_UPLOAD_SIZE in bytes (5,000 MB by default); both are hard ceilings that any client-requested override (limit=, or the X-Max-Upload-Size upload header) is clamped to server-side, regardless of what the client requests.
GET /api/rules-info
Returns on-disk rule counts, last-updated times, and staleness for all three rulesets, for the Rules modal (gear menu > Rules) and the opt-in stale-rules notification (checkForStaleRules()). Purely a snapshot of what's currently on disk - no job/update state involved (that's /api/rule-update-status's job), and no network access either.
Response: {"suricata": {"count": <number or null>, "updated": <epoch or null>, "stale": <boolean or null>}, "yara": {"count": ..., "updated": ..., "stale": ...}, "sigma": {"windows": {"count": ..., "updated": ..., "stale": ...}, "linux": {...}}, "staleThresholdHours": <number>} - count/updated/stale are all null if that ruleset has never been set up (rather than stale: true, since "never downloaded" is a different, more urgent problem the Rules modal's counts already surface, distinct from "downloaded but old"). stale is true once updated is older than staleThresholdHours (the server's config.RULES_MAX_AGE_HOURS) - the single source of truth both the Rules modal's own date-color warning and the notification read, rather than each hardcoding its own threshold.
GET /api/rule-update-status
Returns the live/last-run state of each ruleset's update job, polled by the Rules modal while open.
Response: {"suricata": {"running": <boolean>, "lines": [<string>, ...], "done": <boolean>, "error": <string or null>}, "yara": {...}, "sigma": {...}} - lines accumulates progress messages for the current (or most recent) run of that ruleset.
POST /api/update-rules
Starts an update for one ruleset, or all three. Triggered by the Rules modal's per-ruleset "Update" buttons and its "Update All" button.
Request body: {"ruleset": "suricata"|"yara"|"sigma"|"all"}
Response: {"status": "started"}
Errors: 400 if ruleset isn't one of the four allowed values. 409 ("Rule update already in progress") if the targeted ruleset (or, for "all", any one of the three) is already running.
GET /api/sankey-data
Returns a pre-aggregated {nodes, links} Sankey diagram (Source IP → Dest IP → Dest Port) computed server-side via GROUP BY, so the payload stays small regardless of how many events match - the client never needs to fetch raw events to render the diagram.
Query Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
md5 |
Yes | - | MD5 hash of the analysis |
type |
No | all | Filter by event type |
q |
No | none | Full-text search query. Multiple q params AND together. |
Response:
{"nodes": [{"id": "0:1.2.3.4", "name": "1.2.3.4", "column": 0}, ...],
"links": [{"source": "0:1.2.3.4", "target": "1:5.6.7.8", "value": 42}, ...]}
Other node per column so the response size doesn't grow with the dataset. column is 0 (Source IP), 1 (Dest IP), or 2 (Dest Port).
Unfiltered (no q) responses are cached server-side per (md5, type) and invalidated on delete/reanalyze - repeat requests for the same view are effectively instant.
GET /api/aggregation-data
Returns per-column frequency tables (top 10 values by count) for the given event type, computed server-side - the data behind the "Aggregations" panel.
Query Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
md5 |
Yes | - | MD5 hash of the analysis |
type |
No | all (merged view) | Event type (see Event Types), or omitted for the merged "All Events" view. Not supported for event types whose fields have no static JSON path to aggregate on server-side - currently log/sigmaalert/binary (dynamic/untrusted columns) and mqtt/ldap (dynamically keyed by message/operation subtype) - these fall back to client-side computation instead; see AGGREGATION_JSON_PATHS in db.py for the authoritative, current list. |
q |
No | none | Full-text search query. Multiple q params AND together. |
Response: Object mapping column label to an array of {"value": ..., "count": ...}, sorted descending by count and capped to the top 10.
{"Protocol": [{"value": "TCP", "count": 1200}, {"value": "UDP", "count": 340}],
"Source IP": [{"value": "10.0.0.5", "count": 88}, ...]}
Unfiltered (no q) responses are cached server-side per (md5, type), same as /api/sankey-data.
GET /api/download-stream
Carves a single TCP/UDP stream from the PCAP using tcpdump and returns it as a .pcap download.
Query Parameters:
| Parameter | Required | Description |
|---|---|---|
src |
Yes | Source IP address |
sport |
Yes | Source port |
dst |
Yes | Destination IP address |
dport |
Yes | Destination port |
md5 |
Yes | MD5 hash of a historical analysis |
Response: application/vnd.tcpdump.pcap file download.
Validation: IP addresses and ports are validated before passing to tcpdump. Invalid values return 400.
GET /api/ascii-stream
Extracts ASCII payload from a TCP/UDP stream using tshark. Tries TCP first, falls back to UDP. Truncated to MAX_TRANSCRIPT_SIZE characters (100,000 by default), capped to the first MAX_TRANSCRIPT_LINES lines (500 by default) once that threshold is hit.
Query Parameters:
| Parameter | Required | Description |
|---|---|---|
src |
Yes | Source IP address |
sport |
Yes | Source port |
dst |
Yes | Destination IP address |
dport |
Yes | Destination port |
md5 |
Yes | MD5 hash of a historical analysis |
Response: application/json - {"lines": [{"text": "...", "direction": "src"|"dst"}, ...], "truncated": false}. Non-printable characters replaced with .. Each line is tagged with which side of the connection sent it.
GET /api/hexdump-stream
Extracts per-packet hex dumps from a TCP/UDP stream using tcpdump -X. Truncated to 100,000 characters or 500 packets.
Query Parameters:
| Parameter | Required | Description |
|---|---|---|
src |
Yes | Source IP address |
sport |
Yes | Source port |
dst |
Yes | Destination IP address |
dport |
Yes | Destination port |
md5 |
Yes | MD5 hash of a historical analysis |
Response: application/json - {"packets": [{"header": "...", "lines": ["..."]}], "truncated": false}.
Validation: IP addresses and ports are validated before passing to tcpdump. Invalid values return 400.
GET /api/analyses
Lists all previously-analyzed files.
Response: Array of {"md5": "<hash>", "name": "<display name>", "date_range": {"min": "<ISO timestamp or null>", "max": "<ISO timestamp or null>"}, "has_notes": <bool>} sorted alphabetically by name. date_range reflects the sample's own event timestamps (not upload time), and is {"min": null, "max": null} if the analysis has no events.db yet. has_notes is true if a notes.txt file exists for the analysis.
GET /api/load-analysis
Loads a historical analysis by MD5.
Query Parameters:
| Parameter | Required | Description |
|---|---|---|
md5 |
Yes | MD5 hash of the analysis to load |
Response:
{"success": true, "md5": "<hash>", "file_name": "<filename>", "notes": "<notes text or empty string>"}
Errors: 400 if MD5 is invalid or path is unsafe. 404 if analysis not found. 400 if eve.json exceeds size limit.
GET /api/pcap-path
Returns the filename (not the full filesystem path) of the PCAP file within an analysis's directory.
Query Parameters:
| Parameter | Required | Description |
|---|---|---|
md5 |
Yes | MD5 hash of the analysis |
Response: Plain text path. 404 if no PCAP found.
GET /api/status
Same status information as POST /api/check-status, but accessible via query parameters for read-only polling.
Query Parameters:
| Parameter | Required | Description |
|---|---|---|
md5 |
Yes | MD5 hash of the analysis |
Response:
{"status": "ready", "meta": {"version": 1, "original": "<filename>", "extracted": "<filename>", "detected_type": "pcap", "extracted_at": "<ISO timestamp>"}, "hasRowNotes": false}
{"status": "processing", "phase": "network", "meta": {...}, "hasRowNotes": false}
{"status": "error", "message": "<failure reason>"}
meta is present whenever .meta exists for the analysis (written after the file type is detected) and is omitted otherwise; it's absent entirely from the error response.
hasRowNotes is true if the analysis has at least one row-level note (see POST /api/row-note) - used by the reanalyze confirmation dialog to conditionally warn that reanalyzing deletes them. This field is added only on this GET route, not on the identically-shaped POST /api/check-status response below - that endpoint is polled every 2 seconds during active processing, and the extra lookup has no reason to run that often.
Errors: 400 for invalid or malformed MD5. There is no 404 for a well-formed MD5 that doesn't correspond to an existing analysis directory - the directory's absence just reads the same as "not ready yet" ({"status": "processing", "phase": ""}), since this endpoint never separately checks for the directory's existence.
GET /api/sigma-alerts
Returns Sigma alerts stored in events.db for the specified analysis.
Query Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
md5 |
No | none | MD5 hash of a historical analysis (returns an empty array if omitted) |
offset |
No | 0 |
Pagination offset |
limit |
No | 1000 |
Max alerts to return (capped at MAX_QUERY_LIMIT, 100,000 by default - see GET /api/limits) |
severity |
No | none | Filter by severity level |
q |
No | none | Full-text search query. Multiple q params AND together. |
acknowledged |
No | none | only returns only acknowledged alerts instead of excluding them - see GET /api/events's own acknowledged param |
Response: Array of Sigma alert objects. Same row_note field convention
as GET /api/events above (present only when a note exists).
GET /api/sigma-count
Returns the total Sigma alert count for the specified analysis, optionally filtered.
Query Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
md5 |
Yes | - | MD5 hash of a historical analysis |
severity |
No | none | Filter by severity level |
q |
No | none | Full-text search query. Multiple q params AND together. |
acknowledged |
No | none | only counts only acknowledged alerts instead of excluding them |
Response: {"count": <number>}
GET /api/sigma-stats
Returns Sigma alert statistics (counts grouped by severity/rule/etc.) for the specified analysis.
Query Parameters:
| Parameter | Required | Default | Description |
|---|---|---|---|
md5 |
No | none | MD5 hash of a historical analysis (returns an empty object if omitted) |
Response: Object mapping statistic names to counts.
GET /api/playbook
Returns Security Onion Playbook investigation guidance (plain-English
questions to ask, per detection rule) for a Suricata or Sigma alert. Global
static reference data baked into the Docker image - unlike almost every
other route in this API, this one takes no md5 and isn't scoped to an
analysis.
Query Parameters:
| Parameter | Required | Description |
|---|---|---|
type |
Yes | nids (Suricata) or sigma |
id |
Yes | For type=nids, the alert's signature_id (1-10 digits). For type=sigma, the alert's rule_id (a UUID) |
Response: {"playbook": {"name": "...", "description": "...", "questions": [{"question": "...", "context": "..."}, ...]}} if a playbook exists (an exact match for that rule, or the generic engine-wide fallback if not), or {"playbook": null} if none is baked in at all (e.g. a manual install with nothing baked in, or an image built without the Dockerfile's resources-builder stage).
Errors: 400 if type isn't nids/sigma or id doesn't match the expected shape for that type.
GET /api/ai-summary
Returns an AI-generated one-paragraph summary ("what this rule detects") for
a Suricata, Sigma, or YARA rule. Global static reference data baked into the
Docker image - same as /api/playbook above, this one takes no md5 and
isn't scoped to an analysis.
Query Parameters:
| Parameter | Required | Description |
|---|---|---|
type |
Yes | nids (Suricata), sigma, or yara |
id |
Yes | For type=nids, the alert's signature_id (1-10 digits). For type=sigma, the alert's rule_id (a UUID). For type=yara, the rule's name (bare identifier, up to 200 characters) |
Response: {"summary": "..."} if a summary exists for that exact rule,
or {"summary": null} if none is baked in (e.g. a manual install with
nothing baked in, an image built without the Dockerfile's resources-builder
stage, or a rule with no summary upstream). Unlike /api/playbook, there is
no engine-wide fallback - a summary for the wrong rule would be misleading.
Errors: 400 if type isn't nids/sigma/yara or id doesn't match the expected shape for that type.
POST Endpoints
POST /api/upload
Uploads a file for analysis. Accepts multipart form data.
Request: Multipart form with a file field. Accepts any file type. PCAPs (.pcap, .pcapng, .cap, .trace) get full Suricata network analysis; log files (.evtx, .json, .jsonl, .csv, .xml, .log) get Zircolite Sigma detection; everything else gets YARA scanning.
Response (new file):
{"status": "processing", "md5": "<hash>", "phase": "network"}
or for non-PCAP files:
{"status": "processing", "md5": "<hash>", "phase": "files"}
or for log files:
{"status": "processing", "md5": "<hash>", "phase": "logs"}
If the upload was a ZIP archive containing more than one supported file, only the first is analyzed (a PCAP takes priority; otherwise the first non-hidden file) and every response above gains a filesSkipped field with the count of files that were dropped:
{"status": "processing", "md5": "<hash>", "phase": "network", "filesSkipped": 2}
Response (already analyzed):
{"status": "ready", "md5": "<hash>"}
Processing flow:
1. Detects file type (PCAP magic bytes, log content, or .zip extension)
2. Computes MD5 hash
3. If already analyzed (eve.json for PCAPs, events.db for non-PCAPs), returns ready
4. For PCAPs: saves file, spawns Suricata in background thread, returns processing with phase: "network"
5. For log files: saves file and imports them into events.db in the background, returns processing with phase: "logs"
6. For other files: saves file, runs YARA/EXIF scans in the background, returns processing with phase: "files"
7. When analysis finishes, results are available in events.db (or eve.json for PCAPs)
Special handling: Password-protected zips are auto-decrypted using the common infected password; if the filename contains a YYYY-MM-DD date, the MTA-style dated password (infected_YYYYMMDD) is also tried.
Client should poll POST /api/check-status with the returned MD5 to know when analysis is complete.
POST /api/load-url
Downloads a file from a URL and analyzes it.
Request Body:
{"url": "https://example.com/capture.pcap"}
Response: Same as /api/upload - {"status": "processing", "md5": "...", "phase": "..."} or {"status": "ready", "md5": "..."}.
Special handling:
- Password-protected zips are auto-decrypted using the common infected password (same as /api/upload); for malware-traffic-analysis.net URLs specifically, the date-based password format (infected_YYYYMMDD, derived from the URL's /YYYY/MM/DD/ path) is also tried, before the plain fallback
- URL safety validation blocks localhost, private IPs, link-local, and non-HTTP schemes
- Hostname is resolved to verify the resolved IP is not private
Errors: 400 for invalid URL or SSRF attempt. 413 if file exceeds upload size limit.
POST /api/check-status
Polls whether analysis has finished for an uploaded file.
Request Body:
{"md5": "<hash>"}
Response:
{"status": "ready", "meta": {"version": 1, "original": "<filename>", "extracted": "<filename>", "detected_type": "pcap", "extracted_at": "<ISO timestamp>"}}
{"status": "processing", "phase": "network", "meta": {...}}
{"status": "error", "message": "<failure reason>"}
The phase field reflects the current analysis stage (network, logs, or files), or an empty string if no phase file exists yet. meta is present whenever .meta exists for the analysis and omitted otherwise (including on the error response). Same "no 404 for a well-formed-but-nonexistent MD5" caveat as GET /api/status applies here too.
Ready detection: the same check for every file type - events.db exists and no .phase file is still present (events.db is created the instant ingest starts, well before it finishes, so its existence alone isn't sufficient; .phase stays set for exactly that ingest window).
POST /api/reanalyze
Re-runs the analysis pipeline for an existing MD5 directory. The original uploaded file is preserved; the previous analysis outputs (eve.json, events.db, etc.) are removed and regenerated.
Request Body:
{"md5": "<hash>"}
Only md5 is read from the request body - the response's phase is determined automatically from what's actually in the analysis's directory (network if a PCAP is found, logs if a log file is found, otherwise files), not accepted as client input.
Response:
{"status": "processing", "md5": "<hash>", "phase": "network"}
Errors: 400 for invalid MD5 or unsafe path. 404 if analysis not found. 409 if analysis is already in progress.
POST /api/delete-analysis
Deletes a single historical analysis (removes the entire MD5 directory).
Request Body:
{"md5": "<hash>"}
Response:
{"success": true}
Errors: 400 for invalid MD5 or unsafe path. 404 if analysis not found.
POST /api/rename-analysis
Sets a custom display name for an analysis, overwriting name.txt. Only changes what's displayed (header, previous-analyses list) - the real originally-uploaded filename is unaffected, preserved separately in .meta's original field.
Request Body:
{"md5": "<hash>", "name": "<new display name>"}
The name is trimmed, has embedded newlines collapsed to spaces, and is capped at 255 characters.
Response:
{"success": true, "name": "<new display name>"}
Errors: 400 for invalid MD5, unsafe path, or an empty/whitespace-only name. 404 if analysis not found.
POST /api/analysis-notes
Sets (or clears) freeform investigation notes for an analysis, overwriting notes.txt. Unlike /api/rename-analysis, embedded newlines are preserved verbatim (multi-line notes are the point), and an empty submission is a valid way to clear notes rather than an error.
Request Body:
{"md5": "<hash>", "notes": "<notes text>"}
The notes are trimmed and capped at 10,000 characters. An empty (or whitespace-only) value deletes notes.txt if present.
Response:
{"success": true, "notes": "<notes text>"}
Errors: 400 for invalid MD5, unsafe path, or non-string notes. 404 if analysis not found.
POST /api/row-note
Sets (or clears) a freeform note on one row of the events or sigma_alerts
table - the row-scoped counterpart to POST /api/analysis-notes above (a
short annotation on one specific alert/event, not the whole analysis). Same
clear-on-empty convention.
Request Body:
{"md5": "<hash>", "table": "events", "rowId": 42, "note": "<note text>"}
table must be "events" or "sigma_alerts". rowId must be an integer
(not a boolean - Python's bool is a subclass of int, so this is checked
explicitly). The note is trimmed and capped at 500 characters
(MAX_ROW_NOTE_LENGTH, distinct from MAX_NOTES_LENGTH's 10,000 for
whole-analysis notes). An empty (or whitespace-only) value clears the note.
Response:
{"success": true, "note": "<note text>"}
Errors: 400 for invalid MD5, unsafe path, invalid table, invalid
rowId, or non-string note. 404 if analysis not found.
Row-level notes are lost on POST /api/reanalyze (it rebuilds events.db
from scratch) - unlike whole-analysis notes (notes.txt), which reanalyze
never touches. This is intentional, not a bug.
POST /api/acknowledge-alert
Acknowledges or un-acknowledges one row of the events or sigma_alerts
table - the single-row counterpart to POST /api/acknowledge-alerts-bulk
below. Acknowledging removes the row from every other endpoint's default
results immediately (it's excluded server-side, not just hidden client-side)
- see the acknowledged param on GET /api/events/GET /api/count/
GET /api/sigma-alerts/GET /api/sigma-count above, which is the only way
to see acknowledged rows again.
Request Body:
{"md5": "<hash>", "table": "events", "rowId": 42, "acknowledged": true}
table must be "events" or "sigma_alerts". rowId must be an integer
(not a boolean). acknowledged defaults to true if omitted; set it to
false to un-acknowledge.
Response:
{"success": true, "acknowledged": true}
Errors: 400 for invalid MD5, unsafe path, invalid table, invalid
rowId, or non-boolean acknowledged. 404 if analysis not found.
Acknowledged state is scoped to the current analysis only and, like
row-level notes, is lost on POST /api/reanalyze.
POST /api/acknowledge-alerts-bulk
Acknowledges every id in rowIds in one call - the "all instances of this
alert" bulk path (the matching id set is computed client-side from
whatever's already loaded, not by a server-side signature/rule lookup).
No bulk un-acknowledge counterpart - undoing is always one row at a time,
via POST /api/acknowledge-alert from within the Acknowledged Alerts tab.
Request Body:
{"md5": "<hash>", "table": "events", "rowIds": [42, 43, 44]}
table must be "events" or "sigma_alerts". rowIds must be a
non-empty array of integers (not booleans), capped at MAX_QUERY_LIMIT
(100,000 by default - see GET /api/limits).
Response:
{"success": true, "count": 3}
Errors: 400 for invalid MD5, unsafe path, invalid table, or invalid
rowIds (wrong type, empty, non-integer/boolean entries, or too many).
404 if analysis not found.
POST /api/delete-all-analyses
Deletes all historical analyses (every MD5-shaped directory under the data root). Non-analysis directories and files are left untouched.
Request Body: {} (empty JSON object)
Response:
{"success": true, "deleted": 5}
Errors: 500 if every analysis directory fails to delete.
Error Codes
| Code | Meaning |
|---|---|
400 |
Invalid input (bad IP, port, MD5, URL, path traversal) |
404 |
Resource not found (no file, no analysis, no packets) |
409 |
Conflict - analysis already in progress for this MD5 |
413 |
File too large |
500 |
Internal server error (generic message, no details leaked) |
507 |
Not enough disk space available for this upload |