All integrations

Progpilot Integration with DefectDojo

Progpilot is an open-source static application security testing (SAST) tool specifically designed for PHP applications that performs taint analysis to identify security vulnerabilities including SQL injection, cross-site scripting (XSS), command injection, file inclusion, LDAP injection, and code injection by analyzing source code through Abstract Syntax Trees (AST) to trace data flow from user-controlled sources to dangerous sinks. The tool provides fully customizable security rules with YAML-based configuration for defining custom sources, sinks, sanitizers, and validators, integrates into CI/CD pipelines through CLI and API interfaces, and offers flexible deployment options including PHAR archives, Docker containers, and Composer packages to enable PHP developers to detect and remediate security flaws throughout the development lifecycle.

Data Granularity: What Gets Imported

The following fields are captured from Progpilot results and surfaced in DefectDojo findings:

FieldSourceNotes
TitleFinding name from the scanMatched to the tool's own naming
SeverityCritical / High / Medium / Low / InfoMapped from the tool's own severity scale
DescriptionFinding detail from the reportIncludes what the issue is and why it matters
MitigationRemediation guidanceWhere the tool provides it

Importing Into DefectDojo

Use the DefectDojo import API to create a new Test under the relevant Engagement for your product. The request body:

{
  "scan_type": "Progpilot",
  "engagement": "<engagement-id>",
  "file": "results.json"
}