Skip to content

Report sections #4

Answered by aronmolnar
svpguru asked this question in Q&A
May 8, 2023 · 2 comments · 2 replies
Discussion options

You must be logged in to vote

Hi,
Currently, findings are sorted by the CVSS score during reporting (this will be more flexible in the future). However, in the PDF report, you can order your findings as you like.

You could create an "enum" finding field that holds your testing types.

In the report, you could iterate through your findings and only select those of a certain type. We do the same in the OSCP exam report, where we select Active Directory findings:

<section v-if="findings.find(finding => finding.isActiveDirectory === true)">
    <h1 id="findingsad" class="in-toc numbered">Active Directory Set</h1>

    <div v-for="(finding, index) in findings">
        <div v-if="finding.isActiveDirectory">
            <h2 …

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@svpguru
Comment options

Answer selected by aronmolnar
Comment options

You must be logged in to vote
1 reply
@MWedl
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants