
POC pour vérifier les instances Jira vulnérables à la CVE-2019-8451
Scan de preuve de concept pour vérifier si un hôte Jira est vulnérable à la CVE-2019-8451
CVE-2019-8451 est une vulnérabilité de type server-side request forgery (SSRF) avant authentification, présente dans la ressource /plugins/servlet/gadgets/makeRequest.
Cette vulnérabilité a été introduite dans la version 7.6.0 de Jira Server et corrigée dans les versions 7.13.9 et 8.4.0.
Seule la bibliothèque requests est nécessaire.
Installez avec pip3 install requests
$ ./jira-2019-8451.py -h
usage: jira-2019-8451.py [-h] [-u URL] [-c]
For checking if a Jira instance is vunlerable to CVE-2019-8451
optional arguments:
-h, --help show this help message and exit
-u URL, --url URL URL of the target Jira instance e.g. '-u
https://localhost:8080'
-c, --check Only check the Jira version; doesn't send SSRF attempt
Hôte probablement vulnérable :
$ python3 jira.py -u https://localhost:8080
[-] Testing https://localhost:8080...
[-] Checking for version...
[-] Jira version appears to be: 8.3.4
[-] Sending SSRF test...
[+] Host appears to be vulnerable!
Hôte probablement non vulnérable :
$ python3 jira.py -u https://localhost:8080
[-] Testing https://localhost:8080...
[-] Checking for version...
[-] Jira version appears to be: 8.4.1
[-] Sending SSRF test...
[!] Host doesn't appear to be vulnerable.