Skip to main content
Prowler generates security assessment reports in multiple formats, ensuring compatibility with various analysis tools and AWS integrations.

Default Report Generation

By default, Prowler outputs reports in CSV and JSON-OCSF formats:
If you require reports in JSON-ASFF (used by AWS Security Hub), set it using the -M/--output-modes/--output-formats flag, as in the following example:

Compliance Reports

All compliance-related reports are automatically generated when Prowler is executed. These outputs are stored in the /output/compliance directory.

Custom Output Flags

By default, Prowler creates a file inside the output directory named: prowler-output-ACCOUNT_NUM-OUTPUT_DATE.format. However, both the output file name and directory can be personalised:
  • Custom output report name:
You can use the flag -F/--output-filename
  • Custom output directory:
You can use the flag -o/--output-directory
Both flags can be used simultaneously to provide a custom directory and filename. console prowler <provider> -M csv json-ocsf json-asff \ -F <custom_report_name> -o <custom_report_directory>

Output timestamp format

By default, the timestamp format of the output files is ISO 8601. This can be changed with the flag --unix-timestamp generating the timestamp fields in pure unix timestamp format.

Supported Output Formats

Prowler natively supports the following reporting output formats:
  • CSV
  • JSON-OCSF
  • JSON-ASFF (AWS only)
  • HTML
  • SARIF (IaC only)
Hereunder is the structure for each of the supported report formats by Prowler:

CSV

The CSV format follows a standardized structure across all providers. The following are the available columns:
  • AUTH_METHOD
  • TIMESTAMP
  • ACCOUNT_UID
  • ACCOUNT_NAME
  • ACCOUNT_EMAIL
  • ACCOUNT_ORGANIZATION_UID
  • ACCOUNT_ORGANIZATION_NAME
  • ACCOUNT_TAGS
  • FINDING_UID
  • PROVIDER
  • CHECK_ID
  • CHECK_TITLE
  • CHECK_TYPE
  • STATUS
  • STATUS_EXTENDED
  • MUTED
  • SERVICE_NAME
  • SUBSERVICE_NAME
  • SEVERITY
  • RESOURCE_TYPE
  • RESOURCE_UID
  • RESOURCE_NAME
  • RESOURCE_DETAILS
  • RESOURCE_TAGS
  • PARTITION
  • REGION
  • DESCRIPTION
  • RISK
  • RELATED_URL
  • REMEDIATION_RECOMMENDATION_TEXT
  • REMEDIATION_RECOMMENDATION_URL
  • REMEDIATION_CODE_NATIVEIAC
  • REMEDIATION_CODE_TERRAFORM
  • REMEDIATION_CODE_CLI
  • REMEDIATION_CODE_OTHER
  • COMPLIANCE
  • CATEGORIES
  • DEPENDS_ON
  • RELATED_TO
  • NOTES
  • PROWLER_VERSION
  • ADDITIONAL_URLS

CSV Headers Mapping

The following table shows the mapping between the CSV headers and the providers fields:

JSON-OCSF

The JSON-OCSF output format implements the Detection Finding from the OCSF
Each finding is a json object within a list.

JSON-ASFF (AWS Only)

Only available when using --security-hub or --output-formats json-asff with the AWS provider.
The following code is an example output of the JSON-ASFF format:
Each finding is a json object within a list.

HTML

The following image is an example of the HTML output:

SARIF (IaC Only)

The SARIF (Static Analysis Results Interchange Format) output generates a SARIF 2.1.0 document compatible with GitHub Code Scanning and other SARIF-compatible tools. This format is exclusively available for the IaC provider, as it is designed for static analysis results that reference specific files and line numbers.
The SARIF output format is only available when using the iac provider. Attempting to use it with other providers results in an error.
The SARIF output includes:
  • Rules: Each unique check ID produces a rule entry with severity, description, remediation, and a markdown help panel.
  • Results: Only failed (non-muted) findings are included, with file paths and line numbers for precise annotation.
  • Severity mapping: Prowler severities map to SARIF levels (critical/higherror, mediumwarning, low/informationalnote).

V4 Deprecations

Some deprecations have been made to unify formats and improve outputs.

JSON

Native JSON format has been deprecated in favor of JSON OCSF v1.1.0. The following is the mapping between the native JSON and the Detection Finding from the JSON-OCSF:

CSV Columns

In Prowler v3 each provider had some specific columns, different from the rest. These are the cases that have changed in Prowler v4: