Target
sereto.models.target
¶
TargetDastModel
¶
Bases: TargetModel
Model representing a target which is characterized by IP address.
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 86 87 88 89 90 91 92 93 94 | |
migrate_internal_to_exposure(data)
classmethod
¶
Migrate deprecated 'internal' field to 'exposure'.
Source code in sereto/models/target.py
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 | |
TargetMobileModel
¶
Bases: TargetModel
Model representing the details of the 'mobile' category.
Source code in sereto/models/target.py
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | |
TargetModel
¶
Bases: SeretoBaseModel
Base class for model representing the details of a target.
Attributes:
| Name | Type | Description |
|---|---|---|
id |
str | None
|
Unique identifier for the target, optional. |
category |
str
|
The category of the target. |
name |
str
|
The name of the target (e.g. DAST, SAST). |
locators |
list[LocatorModel]
|
List of locators for the target, such as URLs or IP addresses, source code files, etc. |
Source code in sereto/models/target.py
14 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 | |
uname
property
¶
Unique name for the target instance (version is not included).
TargetSastModel
¶
Bases: TargetModel
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
97 98 99 100 101 102 103 104 105 106 107 108 109 110 | |
parse_target_model(data, *, context=None)
¶
Parse raw target data into the correct target model subtype.
Source code in sereto/models/target.py
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | |