jira-tickets-for-new-vulns provides the means to sync your Snyk-monitored projects and automatically open Jira tickets for new issues and existing issue(s) without ticket(s) already created.
Cron it every X minutes/hours and fix the issues. This tool is aimed to be executed at regular intervals or with a trigger of your choice (webhooks).
./snyk-jira-sync-<yourplatform>
-orgID=<SNYK_ORG_ID> // Can find it under settings
-token=<API Token> // Snyk API Token. Service accounts work.
-jiraProjectKey=<Key> // Jira project Key the tickets will be opened against
Extended options
./snyk-jira-sync-<yourplatform>
--orgID=<SNYK_ORG_ID> // Can find it under settings
--projectID=<SNYK_PROJECT_ID> // Optional. Syncs all projects in Organization if not provided.
// Project ID can be found under project->settings
--api=<API endpoint> // Optional. Set to https://<instance>/api for private instances
--token=<API Token> // Snyk API Token. Service accounts work.
--jiraProjectID=<12345> // Jira project ID the tickets will be opened against
--jiraProjectKey=<KEY> // Jira project Key the tickets will be opened against
--jiraTicketType=<Task|Bug|....> // Optional. Type of ticket to open. Defaults to Bug. Please see the 'Notes' section below.
--severity=<critical|high|medium|low> // Optional. Severity threshold to open tickets for. Defaults to low.
--maturityFilter=[mature,proof-of-concept,no-known-exploit,no-data] // Optional. include only maturity level(s). Separated by commas
--type=<all|vuln|license> // Optional. Issue type to open tickets for. Defaults to all.
--assigneeId=<123abc456def789> // Optional. Jira ID of user to assign tickets to. Note: Do not use assigneeName and assigneeId at the same time
--assigneeName=<AccountName> // Optional. Jira Name of user to assign tickets to. Note: Do not use assigneeName and assigneeId at the same time
--priorityIsSeverity // Optional. Set the ticket priority to be based on severity (defaults: Low|Medium|High|Critical=>Low|Medium|High|Highest)
--labels=<IssueLabel1>,IssueLabel2 // Optional. Set JIRA ticket labels
--priorityScoreThreshold=[0-1000] // Optional. Your min priority score threshold
--dryRun=<true|false> // Optional. result can be found in a json file were the tool is run
--debug=<true|false> // Optional. enable debug mode
--ifUpgradeAvailableOnly=<true|false> // Optional. create ticket only for upgradable issues
--configFile // Path the jira.yaml if not root
Restrictions
The tool does not support infrastructure as code projects. It opens an issue only for code and open source projects and ignores all other project types.
Priority is severity
There is an option to get the Jira ticket priority set based on issue severity. The defaults map to:
Use the SNYK_JIRA_PRIORITY_FOR_XXX_VULN env var to override the default and set your value.
Example: Critical severities should receive the Hot Fix priority in Jira.
go run main.go jira.go jira_utils.go vulns.go snyk.go snyk_utils.go
Please report issues.
Dependencies
https://github.com/michael-go/go-jsn/jsn to make JSON parsing a breeze github.com/tidwall/sjson github.com/kentaro-m/blackfriday-confluence gopkg.in/russross/blackfriday.v2
LogFile
A logFile listing all the tickets created can be found where the tool has been run.
The following is an example of config file structure. If your Jira project has custom mandatory fields configured, these fields must be added to the config file. Make sure you give both the key and value expected by Jira under the customMandatoryFields key of the config file:
The token is not expected to be present in the config file.
Command line arguments override the config file. Example: Using the config file above, running ./snyk-jira-sync-macOs -Org=1234 -configFile=true -token=123 the org ID used by the tool will be 1234 and not a1b2c3de-99b1-4f3f-bfdb-6ee4b4990513.
See 'Extended options' for default values.
Ensure you use the same issue type that is configured in your Jira. Default is Bug. Verify the type is use (or default) exists in your Jira configuration.