Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2019-3403 — Python script to exploit CVE-2019-3403 for scraping user information from vulnerable JIRA instances via the unauthenticated user search API. | Kitploit
Tools/GitHubGitHub/davidmckennirey/cve-2019-3403
ReconnaissanceVulnerability AnalysisExploitationWeb Application ExploitationInformation Gathering
GitHubdavidmckennirey/cve-2019-3403

CVE-2019-3403

Python script to exploit CVE-2019-3403 for scraping user information from vulnerable JIRA instances via the unauthenticated user search API.

View Repository
215 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2019-3403

I wanted to easily be able to exploit CVE-2019-3403 to scrape all the users from a JIRA application, so I threw this script together. It isn't the cleanest code ever, and it doesn't handle requests that return over 1000 users (it will just truncate them to the first 1000) - but it can quickly scrape all of the users from a vulnerable JIRA server.

Usage

root@kitploit:~
usage: scrape_jira.py [-h] -d DOMAIN [-q QUERY] [-o OUT] [-v]

Scrape User Information from Vulnerable JIRA Instances [CVE-2019-3403]

optional arguments:
  -h, --help            show this help message and exit
  -d DOMAIN, --domain DOMAIN
                        The domain of the target
  -q QUERY, --query QUERY
                        Specific query to run against the API
  -o OUT, --out OUT     Output to a file
  -v, --verbose         Verbose output

Examples

Scrape everything and save output to a file:

root@kitploit:~
python3 CVE-2019-3403.py -d jira.example.com -o out.txt -v

Just look for a specific user:

root@kitploit:~
python3 CVE-2019-3403.py -d jira.example.com -q admin
Download Tool