Skip to main content

Fast and effective integration to Jira.

Project description

jTrack

A lightweight Python utility to allow fast and effective integrations of external reporters (e.g. automated scanners) with Jira.


Description

You are using an automated scanner or QA tool and want it to automatically create/update Jira tickets for your teams?

But.. How can my scanner know if the Jira has been already created on a previous scan? This is where jTrack comes in.

jTrack also takes on the responsibility of managing issue states. It ensures that existing issues are updated (or skipped, based on user preferences) and new issues are created if previous ones have already been resolved.

jTrack offers two methods for state management:

  1. Utilizing a local Sqlite database.
  2. Leveraging a custom Jira field.

The logic in a nutshell

flowchart
    A{Issue exists in local DB?}
    A -->|No| B(Create a new Jira ticket)
    A -->|Yes| C{Is Jira ticket open?}
    C -->|No| B
    C -->|Yes| D{Is --skip-existing argument provided?}
    D -->|Yes| E[Do Nothing]
    D -->|No| F[Update the ticket]

Installation

Prerequisites

  • Export the Jira details
    export JIRA_URL="https://JIRAURL"
    export JIRA_USER="JIRA_USER"
    export JIRA_PASSWORD="JIRA_PASSWORD"
    

PIP (recommended)

pip install jtrack

Manual

git clone https://github.com/rotemreiss/jTrack.git
cd jTrack
pip install .

Recommended Python Version

jTrack was developed and tested only with Python3.


Usage

Short Form Long Form Description
-h --help Show this help message and exit
-p --project The project's name on Jira (e.g. EXAMPLE).
-i --identifier A system identifier for the issue (unique key).
-s --summary Value for the summary field.
-d --description Value for the description field.
-pr --priority Value for the priority field.
-a --attachment One or more file paths seperated by comma to be attached
-l --labels Jira labels to add to new issues, separated by space.
-j --jira-closed-status Jira statuses that are considered to be closed, defaults to 'Closed' and 'Resolved', separated by spaces.
-t --jira-type Jira issue type for new tasks, deafults to 'Task'.
-se --skip-existing Do nothing if Jira already exists and open.
-sfn --stateless-field-name The name of the custom field for stateless tracking (optional).
-q --quiet Do not print the banner.

Examples

  • List all options
    jtrack --help
  • Handle new "event" with the identifier (unique key) domain.com
    jtrack -p MY_PROJECT -i domain.com -s "This is the subject"
  • With Labels
    jtrack -p MY_PROJECT -i domain.com -l SCAN-LABEL, DAILY-SCAN -s "This is the subject"
  • With attachment
    jtrack -p MY_PROJECT -i domain.com -s "This is the subject" -a /tmp/scan-results.log
  • Support additional closed types
    jtrack -p MY_PROJECT -i domain.com -s "This is the subject" -j Closed Resolved Done
  • With Jira state management instead of a local DB
    jtrack -p MY_PROJECT -i domain.com -s "This is the subject" -sfn CustomFieldName

Real-life Examples

WordPress Scanner

You are running a daily security scan for vulnerabilities with a tool like WPScan and you want to manage all the results for that domain in one (up-to-date) Jira task:

Just pass the domain name as the identifier and the report file as an attachment.

Take a look in the examples directory.

Subdomain Takeover Scanner

See https://github.com/rotemreiss/robusto/blob/master/hooks/_found_hook_jira_example


Roadmap

  • Extend the options (e.g. support other fields and custom fields)
  • Update description or/and fields and not only attachments
  • Generalize the decision and the action to support other actions (e.g. Slack and other ticketing systems)

Contributing

Feel free to fork the repository and submit pull-requests.


Support

Create new GitHub issue

Want to say thanks? :) Message me on Linkedin


License

License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jtrack-1.2.3.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

jtrack-1.2.3-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

Details for the file jtrack-1.2.3.tar.gz.

File metadata

  • Download URL: jtrack-1.2.3.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for jtrack-1.2.3.tar.gz
Algorithm Hash digest
SHA256 105007d32ccaf52ca8abc571e4e07319fa88228521010fe4bbba5d9973f4a19b
MD5 9e83c62d94a862d81be17f9cb6280d62
BLAKE2b-256 22d29c2523e1a4d3fc65b0ec0046316f1ed9dba8b478662cb7dc78319ba302a4

See more details on using hashes here.

File details

Details for the file jtrack-1.2.3-py3-none-any.whl.

File metadata

  • Download URL: jtrack-1.2.3-py3-none-any.whl
  • Upload date:
  • Size: 7.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for jtrack-1.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4073424d5445c3fdcc468ac67c1875dc2c1d0df78a0f7879d3b1759595756738
MD5 f5737b7c0f8b79cfcf3dffdc356d330f
BLAKE2b-256 e890f5b49e8b27dce3e4e0e1f3af517a9085254ffcb68fce3da63d27b885f6d5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page