CSV exports produce a flat file with one row per finding, suitable for Excel, Google Sheets, database import, and reporting workflows.Documentation Index
Fetch the complete documentation index at: https://docs.q-uestionable.ai/llms.txt
Use this file to discover all available pages before exploring further.
Generating CSV
CLI:Columns
| Column | Description |
|---|---|
run_id | Run identifier |
target_name | Target name |
category | Finding category (e.g., command_injection, auth) |
severity | Severity level (critical, high, medium, low, info) |
title | Finding title |
description | Detailed description |
tool_name | MCP tool name associated with the finding |
| owasp_mcp_id | OWASP MCP Top 10 identifier (e.g., MCP05) |
| remediation | Recommended fix |
| mitigation_summary | Condensed mitigation guidance (first action item or “See full report”) |
| framework_ids | All framework mappings as semicolon-separated key=value pairs |
| timestamp | ISO timestamp of when the finding was created |
Example Output
Usage
Open directly in Excel or Google Sheets. All text fields containing commas, quotes, or newlines are properly escaped per RFC 4180. For database import:cut/grep can break on RFC 4180 CSV):
CSV flattens the framework_ids dict into a single string column. For structured framework data, use the JSON bundle or NDJSON exports.