Multi Assessment Domain Reports
Overview
Section titled “Overview”Multi Assessment Domain Reports allow you to combine different types of security assessments into a single comprehensive report. This feature is particularly useful when conducting both web application and network infrastructure assessments for the same client
Setting Up Multi Assessment Domain Projects
Section titled “Setting Up Multi Assessment Domain Projects”Step 1: Create a Multi Assessment Domain Project
Section titled “Step 1: Create a Multi Assessment Domain Project”When creating a new project, enable the “Multi Assessment Domain” option:

This setting allows you to categorize findings by their assessment domain throughout the project.
Step 2: Assign Assessment Domains to Findings
Section titled “Step 2: Assign Assessment Domains to Findings”Once enabled, you can assign each vulnerability finding to a specific assessment domain in the Vulnerabilities tab:

Working with Templates
Section titled “Working with Templates”The getByDomain Method
Section titled “The getByDomain Method”The getByDomain method allows you to filter findings by their assessment domain within your report template.
This enables you to create dedicated sections for each type of assessment.
Method Syntax
Section titled “Method Syntax”{#vulnerabilities | getByDomain:'Domain Name'}Return Values
Section titled “Return Values”The method returns an object with two properties:
hasItems(boolean):trueif there are findings for this domain, false if emptyitems(array): An `array of vulnerability objects matching the specified domain
Template Examples
Section titled “Template Examples”Basic Usage - Display Web Application Findings
Section titled “Basic Usage - Display Web Application Findings”{#vulnerabilities | getByDomain:'Web Application'} {#items} Title: {title} {/items}{/vulnerabilities | getByDomain:'Web Application'}Advanced Usage - Conditional Sections
Section titled “Advanced Usage - Conditional Sections”This example shows how you can hide heading of the assessment domain if there is no vulnerability with particular assessment domain
{#vulnerabilities | getByDomain:'Network Infrastructure'} {#hasItems} Web Application Vulnerabilities {#items} Title: {title} {/items} {/hasItems}{/vulnerabilities | getByDomain:'Network Infrastructure'}