Jira Common Bugs
Introduction
What would you do if you came across a website that uses Jira?
How to Detect
Try to HTTP request to https://example.com/secure/Dashboard.jspa
or https://example.com/login.jsp
and there is a form login
Find the related CVE by checking jira version
How to find the jira version
Try to request to https://example.com/secure/Dashboard.jspa
and then check the source code. You will find this line <meta name="ajs-version-number" content="8.20.9">
so 8.20.9 is the jira version. If you found outdated jira version, find the CVEs at CVEDetails
Some example CVE:
CVE-2017-9506 (SSRF)
CVE-2018-20824 (XSS)
CVE-2019-8451 (SSRF)
CVE-2019-8449 (User Information Disclosure)
CVE-2019-8442 (Sensitive Information Disclosure)
CVE-2019-3403 (User Enumeration)
CVE-2020-14181 (User Enumeration)
CVE-2020-14178 (Project Key Enumeration)
CVE-2020-14179 (Information Disclosure)
CVE-2019-11581 (Template Injection)
CVE-2019-3396 (Path Traversal)
CVE-2019-3402 (XSS)
Signup enabled
Reference
Last updated