Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sonarqube security reports : OWASP Top 10

Is it possible to keep a security report OWASP Top 10 after every scan, so i can identify the delta of OWASP vulnerabilities between two version ?

Sonarqube GUI offer the security reports just for the last scan

enter image description here

Thanks for any advice

like image 919
FuSsA Avatar asked Oct 26 '25 15:10

FuSsA


1 Answers

I was able to achieve my goal by using the web api after each scan, like example below :

http://0.0.0.0:9099/api/issues/search?componentKeys=com.test&facets=owaspTop10&owaspTop10=a1,a2,a3,a4,a5,a6,a7,a8,a9,a10
like image 81
FuSsA Avatar answered Oct 28 '25 04:10

FuSsA