How to create a report that has all the problems?

I have a Fortify FPR scan file that I open in AWB. I want to create a report in which there are all cases of problem detection. When I create a report, it generates a report with problems by type and their account, and under type I also get the names and code fragments of some files in which the problem was detected. I want to generate an s-report that contains the names and code snippets from all the files in which the problems were found. Is there any way to do this?

+4
source share
3 answers

From the Audit Workbench toolkit, create a report and in the Results Outlines panel, open the Lists section and uncheck the Limit the number of problems in each group box if they are checked.

Fortify report settings

+1
source

Template files can be found in Core/config/reportsyour fortify file.

Copy DeveloperWorkbook.xml to a new file AllIssues.xmland about <title>Results Outline</title>change limit="5"to limit="-1".

Then run:

ReportGenerator -template AllIssues.xml -format pdf -f output.pdf -source input.fpr
+6
source

:

$ ReportGenerator -format PDF -f abcd.pdf -source abcd.fpr

,

0

Source: https://habr.com/ru/post/1612816/


All Articles