Target
sereto.models.target
¶
Target
¶
Bases: SeretoBaseModel
Base class for model representing the details of a target.
Source code in sereto/models/target.py
15 16 17 18 19 20 21 22 23 24 25 26 27 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 |
|
uname: str
property
¶
Unique name for the target instance.
Returns:
Type | Description |
---|---|
str
|
The unique name of the target. |
select_finding_group(selector=None)
¶
Select a finding group from the target.
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/models/target.py
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 |
|
TargetDast
¶
Bases: Target
Model representing a target which is characterized by IP address.
Source code in sereto/models/target.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
TargetSast
¶
Bases: Target
Model representing the details of the 'sast' category.
Attributes:
Name | Type | Description |
---|---|---|
code_origin |
Literal['vcs', 'archive'] | None
|
where we obtained the code - Version Control System or archive (ZIP/TAR/...) |
code_origin_name |
str | None
|
origin details - e.g. "Gitlab" or "project_source.zip" |
code_integrity |
dict[str, str]
|
dictionary containing file name with hash type as the key and corresponding hash as the value |
source_code_analyzer_files |
list[str]
|
additional files from source code analyzers (like Fortify SCA or Sonarqube) |
Source code in sereto/models/target.py
108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
|