Building blocks¶
This page provides an overview of the building blocks for creating your custom templates. See Templating - Jinja2 for details on how the variables can be included in the templates.
This is so far valid for the report.tex.j2
and sow.tex.j2
templates.
Variables¶
c
: The VersionConfig object for the current version of the project.config
: The full Config object (most of the time, you should usec
instead).version
: The version of the project.project_path
: Path object to the project directory.
Useful methods and properties of the VersionConfig¶
The following methods can be invoked from the c
object.
Example usage:
c.filter_targets(category=["dast", "sast"], name="^foo")]
c.filter_dates(type="pentest_ongoing", start="01-Jan-2024", end="31-Jan-2024")
c.filter_people(type="author", email="@foo.bar$")
sereto.config.VersionConfig.filter_targets(category=None, name=None, inverse=False)
¶
Filter targets based on specified criteria.
The regular expressions support the syntax of Python's re
module.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
category
|
str | Iterable[str] | None
|
The category of the target. Can be a single category, a list of categories, or None. |
None
|
name
|
str | None
|
Regular expression to match the name of the target. |
None
|
inverse
|
bool
|
If True, return the inverse of the usual results. |
False
|
Returns:
Type | Description |
---|---|
list[TargetModel]
|
A list of targets matching the criteria. |
Source code in sereto/config.py
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
|
sereto.config.VersionConfig.filter_dates(type=None, start=None, end=None, *, first_date=False, last_date=False, inverse=False)
¶
filter_dates(type: str | DateType | Iterable[str] | Iterable[DateType] | None = ..., start: str | SeretoDate | None = ..., end: str | SeretoDate | None = ..., *, first_date: Literal[True], last_date: Literal[False] = False, inverse: bool = False) -> SeretoDate | None
filter_dates(type: str | DateType | Iterable[str] | Iterable[DateType] | None = ..., start: str | SeretoDate | None = ..., end: str | SeretoDate | None = ..., *, first_date: Literal[False] = False, last_date: Literal[True], inverse: bool = False) -> SeretoDate | None
filter_dates(type: str | DateType | Iterable[str] | Iterable[DateType] | None = ..., start: str | SeretoDate | None = ..., end: str | SeretoDate | None = ..., *, first_date: Literal[False], last_date: Literal[False], inverse: bool = False) -> list[Date]
Filter dates based on specified criteria.
The start and end dates are inclusive. For date ranges, a date is considered matching if it completely overlaps with the specified range.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
type
|
str | DateType | Iterable[str] | Iterable[DateType] | None
|
The type of the date. Can be |
None
|
start
|
str | SeretoDate | None
|
Only dates on or after this date will be included. |
None
|
end
|
str | SeretoDate | None
|
Only dates on or before this date will be included. |
None
|
first_date
|
bool
|
If True, return the earliest date matching the criteria. Even for date ranges, only the start
date is considered. The type returned is |
False
|
last_date
|
bool
|
If True, return the latest date matching the criteria. Even for date ranges, only the end date
is considered. The type returned is |
False
|
inverse
|
bool
|
If True, return the inverse of the usual results. |
False
|
Returns:
Type | Description |
---|---|
list[Date] | SeretoDate | None
|
For first_date or last_date = True, returns SeretoDate or None. Otherwise, returns a list[Date]. |
Source code in sereto/config.py
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
|
sereto.config.VersionConfig.filter_people(type=None, name=None, business_unit=None, email=None, role=None, inverse=False)
¶
Filter people based on specified criteria.
The regular expressions support the syntax of Python's re
module.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
type
|
str | PersonType | Iterable[str] | Iterable[PersonType] | None
|
The type of the person. Can be a single type, a list of types, or None. |
None
|
name
|
str | None
|
Regular expression to match the name of the person. |
None
|
business_unit
|
str | None
|
Regular expression to match the business unit of the person. |
None
|
email
|
str | None
|
Regular expression to match the email of the person. |
None
|
role
|
str | None
|
Regular expression to match the role of the person. |
None
|
inverse
|
bool
|
If True, return the inverse of the usual results. |
False
|
Returns:
Type | Description |
---|---|
list[Person]
|
A list of people matching the criteria. |
Source code in sereto/config.py
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 |
|
sereto.config.VersionConfig.select_target(categories, selector=None)
¶
Source code in sereto/config.py
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
|
There are also the following properties:
sereto.config.VersionConfig.report_sent_date
property
¶
Get the report sent date
It has fallback to the review date and last date of the pentest ongoing.
sereto.config.VersionConfig.total_open_risks
property
¶
Get the total number of open risks across all risk levels.
sereto.config.VersionConfig.sum_risks
property
¶
Get the sum of risks across all targets.