Finding
sereto.finding
¶
FindingGroup
dataclass
¶
Represents a finding group.
Attributes:
Name | Type | Description |
---|---|---|
name |
str
|
The name of the finding group. |
explicit_risk |
Risk | None
|
Risk to be used for the group. Overrides the calculated risks from sub-findings. |
sub_findings |
list[SubFinding]
|
A list of sub-findings in the group. |
Source code in sereto/finding.py
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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
|
risk
property
¶
Get the finding group risk.
Returns:
Type | Description |
---|---|
Risk
|
The explicit risk if set, otherwise the highest risk from the sub-findings. |
uname
property
¶
Unique name of the finding group.
dumps_toml()
¶
Dump the finding group to a TOML string.
Source code in sereto/finding.py
157 158 159 160 161 162 163 164 165 166 167 168 169 |
|
load(name, group_desc, findings_dir, templates)
classmethod
¶
Load a finding group.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
The name of the finding group. |
required |
group_desc
|
FindingGroupModel
|
The description of the finding group. |
required |
findings_dir
|
DirectoryPath
|
The path to the findings directory. |
required |
templates
|
DirectoryPath
|
The path to the templates directory. |
required |
Returns:
Type | Description |
---|---|
Self
|
The loaded finding group object. |
Source code in sereto/finding.py
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
|
Findings
dataclass
¶
Represents a collection of findings.
Attributes:
Name | Type | Description |
---|---|---|
groups |
list[FindingGroup]
|
A list of finding groups. |
target_dir |
FilePath
|
The path to the target directory containing the findings. |
Source code in sereto/finding.py
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 252 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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
|
config_file
property
¶
Get the path to the findings.toml configuration file
findings_dir
property
¶
Get the path to the directory containing the findings
risks
property
¶
Get the summary of risks for the specified version.
add_from_template(templates, template_path, category, name=None, risk=None, variables=None)
¶
Add a sub-finding from a template.
This will create a new finding group with a single sub-finding.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
templates
|
DirectoryPath
|
The path to the templates directory. |
required |
template_path
|
FilePath
|
The path to the sub-finding template. |
required |
name
|
str | None
|
The name of the sub-finding. If not provided, the name will use the default value from the template. |
None
|
risk
|
Risk | None
|
The risk of the sub-finding. If not provided, the risk will use the default value from the template. |
None
|
Source code in sereto/finding.py
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 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 |
|
load_from(target_dir, templates)
classmethod
¶
Load findings belonging to the same target.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target_dir
|
DirectoryPath
|
The path to the target directory. |
required |
templates
|
DirectoryPath
|
The path to the templates directory. |
required |
Returns:
Type | Description |
---|---|
Self
|
The loaded findings object. |
Source code in sereto/finding.py
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 |
|
select_group(selector=None)
¶
Select a finding group by index or name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
selector
|
int | str | None
|
The index or name of the finding group to select. |
None
|
Returns:
Type | Description |
---|---|
FindingGroup
|
The selected finding group. |
Source code in sereto/finding.py
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
|
SubFinding
dataclass
¶
Source code in sereto/finding.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 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 99 100 101 102 103 104 105 106 107 108 109 110 111 |
|
uname
property
¶
Unique name of the finding.
load_from(path, templates)
classmethod
¶
Load a sub-finding from a file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
FilePath
|
The path to the sub-finding file. |
required |
templates
|
DirectoryPath
|
The path to the templates directory. |
required |
Returns:
Type | Description |
---|---|
Self
|
The loaded sub-finding object. |
Source code in sereto/finding.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
|
validate_vars()
¶
Validate the variables of the sub-finding against definition in the template.
Works only if there is a template path defined, otherwise no validation is done.
Raises:
Type | Description |
---|---|
SeretoValueError
|
If the variables are not valid. |
Source code in sereto/finding.py
64 65 66 67 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 99 100 101 102 103 104 105 106 107 108 109 110 111 |
|
render_finding_group_to_tex(config, project_path, target, target_ix, finding_group, finding_group_ix, version)
¶
Render selected finding group (top-level document) to TeX format.
Source code in sereto/finding.py
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 |
|