CodeWallDocs
Findings

Findings

Understand vulnerability findings, severity levels, and remediation guidance.

Findings are verified vulnerabilities discovered during penetration tests. Every finding includes proof-of-concept evidence and actionable remediation steps.

In this section

Importing findings from external scanners

You can import findings from Nessus or Qualys XML scan exports into CodeWall. This lets you consolidate vulnerability data from multiple sources into a single view.

Supported scanners

ScannerFile Format
Nessus.nessus XML export
QualysQualys XML export

How to import

  1. Navigate to Findings
  2. Click Import
  3. Select the scanner type (Nessus or Qualys)
  4. Upload the XML file (max 50 MB)
  5. Select the project to associate the findings with
  6. Click Import

Imported findings are deduplicated by fingerprint — if a finding with the same signature already exists, it will not be duplicated. A synthetic test run is created to group the imported findings.

API import

You can also import via the API:

curl -X POST https://api.codewall.ai/v1/findings/import \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -F "file=@scan_results.xml" \
  -F "tool=nessus" \
  -F "project_id=proj_abc123"