Jira Issue Sync

Create Jira issues for each finding so your team can track remediation.

Setup

  1. Generate a Jira API token at id.atlassian.com
  2. Go to Dashboard > Account > Integrations
  3. Add the Jira integration with your instance details

Via API

Terminal
curl -X POST https://turbopentest.com/api/integrations \
  -H "X-API-Key: $TURBOPENTEST_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "jira",
    "config": {
      "instanceUrl": "https://your-org.atlassian.net",
      "projectKey": "SEC",
      "email": "your-email@example.com",
      "apiToken": "your-jira-api-token"
    }
  }'

Configuration

FieldDescription
instanceUrlYour Jira Cloud URL (e.g. https://your-org.atlassian.net)
projectKeyThe project key where issues will be created
emailThe email associated with your Jira API token
apiTokenYour Jira API token

How it works

When a pentest completes, TurboPentest creates one Jira issue per finding with:

  • Title matching the finding title
  • Description with severity, proof of exploit, and remediation
  • Priority mapped from finding severity

On this page