revengai 1.89.2__py3-none-any.whl → 1.91.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of revengai might be problematic. Click here for more details.
- revengai/__init__.py +3 -15
- revengai/api/__init__.py +0 -1
- revengai/api/analyses_results_metadata_api.py +0 -277
- revengai/api_client.py +1 -1
- revengai/configuration.py +2 -2
- revengai/models/__init__.py +1 -6
- revengai/models/analysis_function_matching_request.py +10 -4
- revengai/models/auto_unstrip_request.py +4 -4
- revengai/models/function_matching_batch_response.py +15 -1
- revengai/models/function_matching_request.py +10 -4
- revengai/models/function_matching_result_with_best_match.py +25 -20
- revengai/models/matched_function.py +9 -2
- revengai/models/{function_threat_score.py → name_confidence.py} +12 -22
- {revengai-1.89.2.dist-info → revengai-1.91.1.dist-info}/METADATA +2 -10
- {revengai-1.89.2.dist-info → revengai-1.91.1.dist-info}/RECORD +16 -22
- revengai/api/functions_threat_score_api.py +0 -609
- revengai/models/analysis_threat_score_data.py +0 -98
- revengai/models/base_response_analysis_threat_score_data.py +0 -125
- revengai/models/base_response_function_analysis_threat_score_data.py +0 -125
- revengai/models/base_response_function_threat_score.py +0 -125
- revengai/models/function_analysis_threat_score_data.py +0 -98
- {revengai-1.89.2.dist-info → revengai-1.91.1.dist-info}/WHEEL +0 -0
|
@@ -16,9 +16,10 @@ import pprint
|
|
|
16
16
|
import re # noqa: F401
|
|
17
17
|
import json
|
|
18
18
|
|
|
19
|
-
from pydantic import BaseModel, ConfigDict,
|
|
20
|
-
from typing import Any, ClassVar, Dict, List, Optional
|
|
19
|
+
from pydantic import BaseModel, ConfigDict, StrictInt
|
|
20
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
21
21
|
from revengai.models.matched_function import MatchedFunction
|
|
22
|
+
from revengai.models.name_confidence import NameConfidence
|
|
22
23
|
from typing import Optional, Set
|
|
23
24
|
from typing_extensions import Self
|
|
24
25
|
|
|
@@ -27,10 +28,9 @@ class FunctionMatchingResultWithBestMatch(BaseModel):
|
|
|
27
28
|
FunctionMatchingResultWithBestMatch
|
|
28
29
|
""" # noqa: E501
|
|
29
30
|
function_id: StrictInt
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
__properties: ClassVar[List[str]] = ["function_id", "matched_function", "suggested_name", "suggested_name_confidence"]
|
|
31
|
+
matched_functions: List[MatchedFunction]
|
|
32
|
+
confidences: Optional[List[NameConfidence]] = None
|
|
33
|
+
__properties: ClassVar[List[str]] = ["function_id", "matched_functions", "confidences"]
|
|
34
34
|
|
|
35
35
|
model_config = ConfigDict(
|
|
36
36
|
populate_by_name=True,
|
|
@@ -71,18 +71,24 @@ class FunctionMatchingResultWithBestMatch(BaseModel):
|
|
|
71
71
|
exclude=excluded_fields,
|
|
72
72
|
exclude_none=True,
|
|
73
73
|
)
|
|
74
|
-
# override the default output from pydantic by calling `to_dict()` of
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
74
|
+
# override the default output from pydantic by calling `to_dict()` of each item in matched_functions (list)
|
|
75
|
+
_items = []
|
|
76
|
+
if self.matched_functions:
|
|
77
|
+
for _item_matched_functions in self.matched_functions:
|
|
78
|
+
if _item_matched_functions:
|
|
79
|
+
_items.append(_item_matched_functions.to_dict())
|
|
80
|
+
_dict['matched_functions'] = _items
|
|
81
|
+
# override the default output from pydantic by calling `to_dict()` of each item in confidences (list)
|
|
82
|
+
_items = []
|
|
83
|
+
if self.confidences:
|
|
84
|
+
for _item_confidences in self.confidences:
|
|
85
|
+
if _item_confidences:
|
|
86
|
+
_items.append(_item_confidences.to_dict())
|
|
87
|
+
_dict['confidences'] = _items
|
|
88
|
+
# set to None if confidences (nullable) is None
|
|
78
89
|
# and model_fields_set contains the field
|
|
79
|
-
if self.
|
|
80
|
-
_dict['
|
|
81
|
-
|
|
82
|
-
# set to None if suggested_name_confidence (nullable) is None
|
|
83
|
-
# and model_fields_set contains the field
|
|
84
|
-
if self.suggested_name_confidence is None and "suggested_name_confidence" in self.model_fields_set:
|
|
85
|
-
_dict['suggested_name_confidence'] = None
|
|
90
|
+
if self.confidences is None and "confidences" in self.model_fields_set:
|
|
91
|
+
_dict['confidences'] = None
|
|
86
92
|
|
|
87
93
|
return _dict
|
|
88
94
|
|
|
@@ -97,9 +103,8 @@ class FunctionMatchingResultWithBestMatch(BaseModel):
|
|
|
97
103
|
|
|
98
104
|
_obj = cls.model_validate({
|
|
99
105
|
"function_id": obj.get("function_id"),
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"suggested_name_confidence": obj.get("suggested_name_confidence")
|
|
106
|
+
"matched_functions": [MatchedFunction.from_dict(_item) for _item in obj["matched_functions"]] if obj.get("matched_functions") is not None else None,
|
|
107
|
+
"confidences": [NameConfidence.from_dict(_item) for _item in obj["confidences"]] if obj.get("confidences") is not None else None
|
|
103
108
|
})
|
|
104
109
|
return _obj
|
|
105
110
|
|
|
@@ -35,7 +35,8 @@ class MatchedFunction(BaseModel):
|
|
|
35
35
|
sha_256_hash: StrictStr
|
|
36
36
|
analysis_id: StrictInt
|
|
37
37
|
similarity: Optional[Union[StrictFloat, StrictInt]] = None
|
|
38
|
-
|
|
38
|
+
confidence: Optional[Union[StrictFloat, StrictInt]] = None
|
|
39
|
+
__properties: ClassVar[List[str]] = ["function_id", "binary_id", "function_name", "function_vaddr", "mangled_name", "debug", "binary_name", "sha_256_hash", "analysis_id", "similarity", "confidence"]
|
|
39
40
|
|
|
40
41
|
model_config = ConfigDict(
|
|
41
42
|
populate_by_name=True,
|
|
@@ -86,6 +87,11 @@ class MatchedFunction(BaseModel):
|
|
|
86
87
|
if self.similarity is None and "similarity" in self.model_fields_set:
|
|
87
88
|
_dict['similarity'] = None
|
|
88
89
|
|
|
90
|
+
# set to None if confidence (nullable) is None
|
|
91
|
+
# and model_fields_set contains the field
|
|
92
|
+
if self.confidence is None and "confidence" in self.model_fields_set:
|
|
93
|
+
_dict['confidence'] = None
|
|
94
|
+
|
|
89
95
|
return _dict
|
|
90
96
|
|
|
91
97
|
@classmethod
|
|
@@ -107,7 +113,8 @@ class MatchedFunction(BaseModel):
|
|
|
107
113
|
"binary_name": obj.get("binary_name"),
|
|
108
114
|
"sha_256_hash": obj.get("sha_256_hash"),
|
|
109
115
|
"analysis_id": obj.get("analysis_id"),
|
|
110
|
-
"similarity": obj.get("similarity")
|
|
116
|
+
"similarity": obj.get("similarity"),
|
|
117
|
+
"confidence": obj.get("confidence")
|
|
111
118
|
})
|
|
112
119
|
return _obj
|
|
113
120
|
|
|
@@ -16,18 +16,19 @@ import pprint
|
|
|
16
16
|
import re # noqa: F401
|
|
17
17
|
import json
|
|
18
18
|
|
|
19
|
-
from pydantic import BaseModel, ConfigDict, Field
|
|
20
|
-
from typing import Any, ClassVar, Dict, List
|
|
21
|
-
from
|
|
19
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
20
|
+
from typing import Any, ClassVar, Dict, List, Union
|
|
21
|
+
from typing_extensions import Annotated
|
|
22
22
|
from typing import Optional, Set
|
|
23
23
|
from typing_extensions import Self
|
|
24
24
|
|
|
25
|
-
class
|
|
25
|
+
class NameConfidence(BaseModel):
|
|
26
26
|
"""
|
|
27
|
-
|
|
27
|
+
NameConfidence
|
|
28
28
|
""" # noqa: E501
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
name: StrictStr = Field(description="The suggested function name")
|
|
30
|
+
confidence: Union[Annotated[float, Field(le=100.0, strict=True, ge=0.0)], Annotated[int, Field(le=100, strict=True, ge=0)]] = Field(description="Confidence score as a percentage")
|
|
31
|
+
__properties: ClassVar[List[str]] = ["name", "confidence"]
|
|
31
32
|
|
|
32
33
|
model_config = ConfigDict(
|
|
33
34
|
populate_by_name=True,
|
|
@@ -47,7 +48,7 @@ class FunctionThreatScore(BaseModel):
|
|
|
47
48
|
|
|
48
49
|
@classmethod
|
|
49
50
|
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
50
|
-
"""Create an instance of
|
|
51
|
+
"""Create an instance of NameConfidence from a JSON string"""
|
|
51
52
|
return cls.from_dict(json.loads(json_str))
|
|
52
53
|
|
|
53
54
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -68,18 +69,11 @@ class FunctionThreatScore(BaseModel):
|
|
|
68
69
|
exclude=excluded_fields,
|
|
69
70
|
exclude_none=True,
|
|
70
71
|
)
|
|
71
|
-
# override the default output from pydantic by calling `to_dict()` of each value in results (dict)
|
|
72
|
-
_field_dict = {}
|
|
73
|
-
if self.results:
|
|
74
|
-
for _key_results in self.results:
|
|
75
|
-
if self.results[_key_results]:
|
|
76
|
-
_field_dict[_key_results] = self.results[_key_results].to_dict()
|
|
77
|
-
_dict['results'] = _field_dict
|
|
78
72
|
return _dict
|
|
79
73
|
|
|
80
74
|
@classmethod
|
|
81
75
|
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
82
|
-
"""Create an instance of
|
|
76
|
+
"""Create an instance of NameConfidence from a dict"""
|
|
83
77
|
if obj is None:
|
|
84
78
|
return None
|
|
85
79
|
|
|
@@ -87,12 +81,8 @@ class FunctionThreatScore(BaseModel):
|
|
|
87
81
|
return cls.model_validate(obj)
|
|
88
82
|
|
|
89
83
|
_obj = cls.model_validate({
|
|
90
|
-
"
|
|
91
|
-
|
|
92
|
-
for _k, _v in obj["results"].items()
|
|
93
|
-
)
|
|
94
|
-
if obj.get("results") is not None
|
|
95
|
-
else None
|
|
84
|
+
"name": obj.get("name"),
|
|
85
|
+
"confidence": obj.get("confidence")
|
|
96
86
|
})
|
|
97
87
|
return _obj
|
|
98
88
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: revengai
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.91.1
|
|
4
4
|
Summary: RevEng.AI API
|
|
5
5
|
Project-URL: Repository, https://github.com/RevEngAI/revengai-python
|
|
6
6
|
Keywords: RevEng.AI API
|
|
@@ -88,7 +88,6 @@ Class | Method | HTTP request | Description
|
|
|
88
88
|
*AnalysesResultsMetadataApi* | [**get_pdf**](docs/AnalysesResultsMetadataApi.md#get_pdf) | **GET** /v2/analyses/{analysis_id}/pdf | Gets the PDF found in the analysis
|
|
89
89
|
*AnalysesResultsMetadataApi* | [**get_sbom**](docs/AnalysesResultsMetadataApi.md#get_sbom) | **GET** /v2/analyses/{analysis_id}/sbom | Gets the software-bill-of-materials (SBOM) found in the analysis
|
|
90
90
|
*AnalysesResultsMetadataApi* | [**get_tags**](docs/AnalysesResultsMetadataApi.md#get_tags) | **GET** /v2/analyses/{analysis_id}/tags | Get function tags with maliciousness score
|
|
91
|
-
*AnalysesResultsMetadataApi* | [**get_threat_score**](docs/AnalysesResultsMetadataApi.md#get_threat_score) | **GET** /v2/analyses/{analysis_id}/threat_score | Gets the threat score found in the analysis
|
|
92
91
|
*AnalysesResultsMetadataApi* | [**get_vulnerabilities**](docs/AnalysesResultsMetadataApi.md#get_vulnerabilities) | **GET** /v2/analyses/{analysis_id}/vulnerabilities | Gets the vulnerabilities found in the analysis
|
|
93
92
|
*AnalysesSecurityChecksApi* | [**create_scurity_checks_task**](docs/AnalysesSecurityChecksApi.md#create_scurity_checks_task) | **POST** /v2/analyses/{analysis_id}/security-checks | Queues a security check process
|
|
94
93
|
*AnalysesSecurityChecksApi* | [**get_security_checks**](docs/AnalysesSecurityChecksApi.md#get_security_checks) | **GET** /v2/analyses/{analysis_id}/security-checks | Get Security Checks
|
|
@@ -165,8 +164,6 @@ Class | Method | HTTP request | Description
|
|
|
165
164
|
*FunctionsRenamingHistoryApi* | [**get_function_name_history**](docs/FunctionsRenamingHistoryApi.md#get_function_name_history) | **GET** /v2/functions/history/{function_id} | Get Function Name History
|
|
166
165
|
*FunctionsRenamingHistoryApi* | [**rename_function_id**](docs/FunctionsRenamingHistoryApi.md#rename_function_id) | **POST** /v2/functions/rename/{function_id} | Rename Function
|
|
167
166
|
*FunctionsRenamingHistoryApi* | [**revert_function_name**](docs/FunctionsRenamingHistoryApi.md#revert_function_name) | **POST** /v2/functions/history/{function_id}/{history_id} | Revert the function name
|
|
168
|
-
*FunctionsThreatScoreApi* | [**get_all_function_threat_scores**](docs/FunctionsThreatScoreApi.md#get_all_function_threat_scores) | **GET** /v2/analyses/{analysis_id}/functions/threat_score | Gets the threat score for all functions
|
|
169
|
-
*FunctionsThreatScoreApi* | [**get_individual_function_threat_score**](docs/FunctionsThreatScoreApi.md#get_individual_function_threat_score) | **GET** /v2/analyses/{analysis_id}/functions/{function_id}/threat_score | Gets the threat score analysis
|
|
170
167
|
*ModelsApi* | [**get_models**](docs/ModelsApi.md#get_models) | **GET** /v2/models | Gets models
|
|
171
168
|
*SearchApi* | [**search_binaries**](docs/SearchApi.md#search_binaries) | **GET** /v2/search/binaries | Binaries search
|
|
172
169
|
*SearchApi* | [**search_collections**](docs/SearchApi.md#search_collections) | **GET** /v2/search/collections | Collections search
|
|
@@ -191,7 +188,6 @@ Class | Method | HTTP request | Description
|
|
|
191
188
|
- [AnalysisScope](docs/AnalysisScope.md)
|
|
192
189
|
- [AnalysisStringsResponse](docs/AnalysisStringsResponse.md)
|
|
193
190
|
- [AnalysisTags](docs/AnalysisTags.md)
|
|
194
|
-
- [AnalysisThreatScoreData](docs/AnalysisThreatScoreData.md)
|
|
195
191
|
- [AnalysisUpdateRequest](docs/AnalysisUpdateRequest.md)
|
|
196
192
|
- [AnalysisUpdateTagsRequest](docs/AnalysisUpdateTagsRequest.md)
|
|
197
193
|
- [AnalysisUpdateTagsResponse](docs/AnalysisUpdateTagsResponse.md)
|
|
@@ -215,7 +211,6 @@ Class | Method | HTTP request | Description
|
|
|
215
211
|
- [BaseResponseAnalysisFunctions](docs/BaseResponseAnalysisFunctions.md)
|
|
216
212
|
- [BaseResponseAnalysisStringsResponse](docs/BaseResponseAnalysisStringsResponse.md)
|
|
217
213
|
- [BaseResponseAnalysisTags](docs/BaseResponseAnalysisTags.md)
|
|
218
|
-
- [BaseResponseAnalysisThreatScoreData](docs/BaseResponseAnalysisThreatScoreData.md)
|
|
219
214
|
- [BaseResponseAnalysisUpdateTagsResponse](docs/BaseResponseAnalysisUpdateTagsResponse.md)
|
|
220
215
|
- [BaseResponseBasic](docs/BaseResponseBasic.md)
|
|
221
216
|
- [BaseResponseBinaryAdditionalResponse](docs/BaseResponseBinaryAdditionalResponse.md)
|
|
@@ -242,7 +237,6 @@ Class | Method | HTTP request | Description
|
|
|
242
237
|
- [BaseResponseDict](docs/BaseResponseDict.md)
|
|
243
238
|
- [BaseResponseDynamicExecutionStatus](docs/BaseResponseDynamicExecutionStatus.md)
|
|
244
239
|
- [BaseResponseExternalResponse](docs/BaseResponseExternalResponse.md)
|
|
245
|
-
- [BaseResponseFunctionAnalysisThreatScoreData](docs/BaseResponseFunctionAnalysisThreatScoreData.md)
|
|
246
240
|
- [BaseResponseFunctionBlocksResponse](docs/BaseResponseFunctionBlocksResponse.md)
|
|
247
241
|
- [BaseResponseFunctionCapabilityResponse](docs/BaseResponseFunctionCapabilityResponse.md)
|
|
248
242
|
- [BaseResponseFunctionDataTypes](docs/BaseResponseFunctionDataTypes.md)
|
|
@@ -250,7 +244,6 @@ Class | Method | HTTP request | Description
|
|
|
250
244
|
- [BaseResponseFunctionSearchResponse](docs/BaseResponseFunctionSearchResponse.md)
|
|
251
245
|
- [BaseResponseFunctionStringsResponse](docs/BaseResponseFunctionStringsResponse.md)
|
|
252
246
|
- [BaseResponseFunctionTaskResponse](docs/BaseResponseFunctionTaskResponse.md)
|
|
253
|
-
- [BaseResponseFunctionThreatScore](docs/BaseResponseFunctionThreatScore.md)
|
|
254
247
|
- [BaseResponseFunctionsDetailResponse](docs/BaseResponseFunctionsDetailResponse.md)
|
|
255
248
|
- [BaseResponseGenerateFunctionDataTypes](docs/BaseResponseGenerateFunctionDataTypes.md)
|
|
256
249
|
- [BaseResponseGenerationStatusList](docs/BaseResponseGenerationStatusList.md)
|
|
@@ -351,7 +344,6 @@ Class | Method | HTTP request | Description
|
|
|
351
344
|
- [FileHashes](docs/FileHashes.md)
|
|
352
345
|
- [FileMetadata](docs/FileMetadata.md)
|
|
353
346
|
- [Filters](docs/Filters.md)
|
|
354
|
-
- [FunctionAnalysisThreatScoreData](docs/FunctionAnalysisThreatScoreData.md)
|
|
355
347
|
- [FunctionBatchAnn](docs/FunctionBatchAnn.md)
|
|
356
348
|
- [FunctionBlockDestinationResponse](docs/FunctionBlockDestinationResponse.md)
|
|
357
349
|
- [FunctionBlockResponse](docs/FunctionBlockResponse.md)
|
|
@@ -388,7 +380,6 @@ Class | Method | HTTP request | Description
|
|
|
388
380
|
- [FunctionStringsResponse](docs/FunctionStringsResponse.md)
|
|
389
381
|
- [FunctionTaskResponse](docs/FunctionTaskResponse.md)
|
|
390
382
|
- [FunctionTaskStatus](docs/FunctionTaskStatus.md)
|
|
391
|
-
- [FunctionThreatScore](docs/FunctionThreatScore.md)
|
|
392
383
|
- [FunctionTypeInput](docs/FunctionTypeInput.md)
|
|
393
384
|
- [FunctionTypeOutput](docs/FunctionTypeOutput.md)
|
|
394
385
|
- [FunctionsDetailResponse](docs/FunctionsDetailResponse.md)
|
|
@@ -415,6 +406,7 @@ Class | Method | HTTP request | Description
|
|
|
415
406
|
- [MetaModel](docs/MetaModel.md)
|
|
416
407
|
- [ModelName](docs/ModelName.md)
|
|
417
408
|
- [ModelsResponse](docs/ModelsResponse.md)
|
|
409
|
+
- [NameConfidence](docs/NameConfidence.md)
|
|
418
410
|
- [NearestNeighbor](docs/NearestNeighbor.md)
|
|
419
411
|
- [NetworkOverviewDns](docs/NetworkOverviewDns.md)
|
|
420
412
|
- [NetworkOverviewDnsAnswer](docs/NetworkOverviewDnsAnswer.md)
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
revengai/__init__.py,sha256=
|
|
2
|
-
revengai/api_client.py,sha256=
|
|
1
|
+
revengai/__init__.py,sha256=XXKmG6mCf8-qGqmhd1Vj67IUu-3rMDgrcQMnvRGJFM4,43030
|
|
2
|
+
revengai/api_client.py,sha256=1q4RfcppPSuYqOR46xxR-dSaC2V59MKLjVp_YuVHSow,27670
|
|
3
3
|
revengai/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
revengai/configuration.py,sha256=
|
|
4
|
+
revengai/configuration.py,sha256=dlFfSGmHA_evJZg9U9P6Yut7igj1Qa_c6l9g_kDzuu4,18749
|
|
5
5
|
revengai/exceptions.py,sha256=IvdI9ZIZ9b2lSSKtIKMQDlG-5UPAedrjm3U4xfmGkso,6385
|
|
6
6
|
revengai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
revengai/rest.py,sha256=T6Q2dcazhntqm288H33BKC1hf8NVdvmQWgaymlJo158,9376
|
|
8
|
-
revengai/api/__init__.py,sha256=
|
|
8
|
+
revengai/api/__init__.py,sha256=ercHI6-ZXgrfZ-crplF-fSQbSXY4xPellnIkvTt68uc,1320
|
|
9
9
|
revengai/api/analyses_comments_api.py,sha256=L6NuM8bS3NJRt1b3WKdnZlYVE0YgdcZivNwGuQe5Gb4,49575
|
|
10
10
|
revengai/api/analyses_core_api.py,sha256=NepmPQlWZ2YnBpAPHoK0rXjvsgw6lWjghaJWd8v-Sk0,197484
|
|
11
11
|
revengai/api/analyses_dynamic_execution_api.py,sha256=4vNnupRsuwNVNk7cPa-VFx2nnLtrokJpHu4YUOPwX_o,77682
|
|
12
|
-
revengai/api/analyses_results_metadata_api.py,sha256=
|
|
12
|
+
revengai/api/analyses_results_metadata_api.py,sha256=ibAQYhNtvjjV2fqTUxV3FpiG5PpeILEkhBPfWW9zQYM,79270
|
|
13
13
|
revengai/api/analyses_security_checks_api.py,sha256=b1phfsLDO2kvmLaYtGjMVUkHUhRp63EEN3aJvTyX16o,35691
|
|
14
14
|
revengai/api/authentication_users_api.py,sha256=2bJh7ij2nMIlsz-YIQHjl9Q2RSHlYKgBrCW3E8GNhdw,53758
|
|
15
15
|
revengai/api/binaries_api.py,sha256=QMKuMSwu5b0H-HElCeECff_Wd0OuSo0ZN4oyKtvUFsw,66116
|
|
@@ -23,10 +23,9 @@ revengai/api/functions_core_api.py,sha256=aK3szgh3LRltaMoUt2_8fiPWUFS9GBPKotcPYo
|
|
|
23
23
|
revengai/api/functions_data_types_api.py,sha256=Fzu4oI6kTwSE820_cGjr09N_G3uGOa4DUiyPFwOqvx4,73869
|
|
24
24
|
revengai/api/functions_decompilation_api.py,sha256=nEvYHPFoonmKSAf_t4_voC3SfoDd-O9sisSfA-5hiJo,83262
|
|
25
25
|
revengai/api/functions_renaming_history_api.py,sha256=L2CDadLnZrA0oNxhJfTSLLiMDz0Z4583Q8zLEj-Ze2I,47441
|
|
26
|
-
revengai/api/functions_threat_score_api.py,sha256=RYbCaX71r2ssv7VxUrcezT8dSdU5K5ipHD6yR592k6I,23867
|
|
27
26
|
revengai/api/models_api.py,sha256=bqukeUMctErkaX5mH8Rm3iPKEHQOCx-JT-P8_KV_iP8,11319
|
|
28
27
|
revengai/api/search_api.py,sha256=Kzo7KfP4nY1-YsoCHxVOQm3Vn89kFjcnUV7oNdaw5z0,65835
|
|
29
|
-
revengai/models/__init__.py,sha256=
|
|
28
|
+
revengai/models/__init__.py,sha256=VbAbhW_IfAT9hJ5G1j3wcVNqZutdLPts9QHsZg7ndvY,23237
|
|
30
29
|
revengai/models/addr.py,sha256=-2N-UQsOiZ0eyEAQ7ssk0of8W2fBrXeYdTZXuVt3SZs,4787
|
|
31
30
|
revengai/models/ai_decompilation_rating.py,sha256=gyay27QJwToUNtK9NARyw731Sg8GFRTufGGUABVYyfo,722
|
|
32
31
|
revengai/models/ai_unstrip_request.py,sha256=loSXNdHATJmY5yttiUCE-lLEOkuE63qVDTz8U0eCAIc,2596
|
|
@@ -36,13 +35,12 @@ revengai/models/analysis_create_request.py,sha256=6hU94Fi47hrxXQ-wX1jRuDrDi1GQym
|
|
|
36
35
|
revengai/models/analysis_create_response.py,sha256=aaO3-lJ65iBGe5lnyW8exHb9qByDaWfF2hOVKrWkN-I,2628
|
|
37
36
|
revengai/models/analysis_detail_response.py,sha256=KPyzlSbu9TU7itVlhGusJVSszrZAkuC8dMg1welYZeM,4170
|
|
38
37
|
revengai/models/analysis_function_mapping.py,sha256=_8LOSaBOgsFKLeqvoizbU2FSHtekA7aNrM7deIJyM4k,2886
|
|
39
|
-
revengai/models/analysis_function_matching_request.py,sha256=
|
|
38
|
+
revengai/models/analysis_function_matching_request.py,sha256=gKIPk3xTwcQ5uBGVvSzwga9g8s5o1u_CTpbx-5YYZFU,4327
|
|
40
39
|
revengai/models/analysis_functions.py,sha256=N1TKQuw33I9dw-i07kLus36k2bcAXQVm2oc1Ycfrgdw,3067
|
|
41
40
|
revengai/models/analysis_record.py,sha256=DxnERhF-s5AilH804yKtMAOyXhhjWQsq0ned1ji5t5Q,5516
|
|
42
41
|
revengai/models/analysis_scope.py,sha256=azpsUux2axe4QKwQ4FbW30HbazYYVFP-e68F9zp33-4,668
|
|
43
42
|
revengai/models/analysis_strings_response.py,sha256=KcqljUjKapdNa_6-uCJ6E2DBiAHWYGDw0VD4l-mtmzY,3177
|
|
44
43
|
revengai/models/analysis_tags.py,sha256=bVeyZzwnPxmpuXdLk4Jpz0fLsjeRjw0kcBLgeiDvsW4,3663
|
|
45
|
-
revengai/models/analysis_threat_score_data.py,sha256=1bCfJF-PyKsy6tW7JH-RyouW7bHBYd7f-eLQTup5RTQ,3500
|
|
46
44
|
revengai/models/analysis_update_request.py,sha256=J4IulQ18iPHjrDMpLn9_NzMg99_W7jS8eCK17feVAtE,3403
|
|
47
45
|
revengai/models/analysis_update_tags_request.py,sha256=nrJwzS_Yg3SOkvrRcGW6eWfoG_FZn4l9dAZpRQNbV7A,2436
|
|
48
46
|
revengai/models/analysis_update_tags_response.py,sha256=KRNesNAW57hCPatnsy7ACBZORuKvWfd2XITFLwqtdbA,2936
|
|
@@ -57,7 +55,7 @@ revengai/models/app_api_rest_v2_similarity_schema_ann_function.py,sha256=atfQz2t
|
|
|
57
55
|
revengai/models/app_services_binary_ann_schema_tag_item.py,sha256=m25sIz8KEsPES0XGjmOZFhmLNLmB-jsakfRUpRfiMks,2977
|
|
58
56
|
revengai/models/app_services_dynamic_execution_schemas_dynamic_execution_status.py,sha256=9e3LDnw0iNCbowQPFTkNyIqkzsCQyJLZrx6tqRska6o,2562
|
|
59
57
|
revengai/models/argument.py,sha256=QmWpJiohyzTVC1GLHg1IlgM5QyONnBF6FGK_mOYQL_Y,3148
|
|
60
|
-
revengai/models/auto_unstrip_request.py,sha256=
|
|
58
|
+
revengai/models/auto_unstrip_request.py,sha256=Z_jmV5WnTIzdldBQPYBcKB-vlFxGEsxD2611HnBPDPo,3759
|
|
61
59
|
revengai/models/auto_unstrip_response.py,sha256=g37ANqNsVIM_BCb-kHNDak6E-8fNVUyPOh03YFjm2O8,4737
|
|
62
60
|
revengai/models/base_response.py,sha256=U1Hwv1TXztjpxHxXGwGk46egAYs49jfzEfr1nTajMjg,4526
|
|
63
61
|
revengai/models/base_response_analysis_create_response.py,sha256=bwA1vMqKgLUDcElBvuvTH2jo8tvx0mjfbMOnoniswbE,4682
|
|
@@ -66,7 +64,6 @@ revengai/models/base_response_analysis_function_mapping.py,sha256=JiypPq36Om24A5
|
|
|
66
64
|
revengai/models/base_response_analysis_functions.py,sha256=73wAD-8VUh6dMuwnxSXi6_xZ9YCE-eUaeEKaUd3yTrY,4641
|
|
67
65
|
revengai/models/base_response_analysis_strings_response.py,sha256=GAbjdsI625BY87KX502ZPvbC2xGcbyEcwNNVfrmATZU,4690
|
|
68
66
|
revengai/models/base_response_analysis_tags.py,sha256=WbqupzDQHmEB1d1clDQnWUl3bQZzcogVrZ_SOtSsp-o,4601
|
|
69
|
-
revengai/models/base_response_analysis_threat_score_data.py,sha256=pFQXgPWl34owodaUKYZKLzU3gSb583jUZNmK0SqzpNg,4691
|
|
70
67
|
revengai/models/base_response_analysis_update_tags_response.py,sha256=xiSKWUVmVNCnttN6hMgtOhi1BADQzAuqFdciL_ARPnA,4715
|
|
71
68
|
revengai/models/base_response_basic.py,sha256=U91hPrg-pfhIIa-zfmU6dmvd3zZtWIjmVOtQEorSCx0,4544
|
|
72
69
|
revengai/models/base_response_binary_additional_response.py,sha256=U412ClcwzaAp-auzCJzayLbGoHduTcchH5dzFg4qfVw,4698
|
|
@@ -93,7 +90,6 @@ revengai/models/base_response_decompilation_response.py,sha256=7k3dXthZMv0XgQxqS
|
|
|
93
90
|
revengai/models/base_response_dict.py,sha256=f175LlL4fSNFSkiWAz11dLh0LaqmpMYvtT3chWK_6k4,4302
|
|
94
91
|
revengai/models/base_response_dynamic_execution_status.py,sha256=suoadd2cfPDF6GpXnyk8LVqVY0CNSWYmlorNosqqBYo,4823
|
|
95
92
|
revengai/models/base_response_external_response.py,sha256=IRgDZug5v0wxhTKcmpda68yK4bKJmumGIagvx__pCvU,4633
|
|
96
|
-
revengai/models/base_response_function_analysis_threat_score_data.py,sha256=z-ysvXnVI73zg0vn7avaFje_1ZxLhDLfB5VQlDDye_g,4756
|
|
97
93
|
revengai/models/base_response_function_blocks_response.py,sha256=UyV_MNTUr-DfuRZp_0SuqrL6YRteHHgRxfYiQ4BHj9U,4682
|
|
98
94
|
revengai/models/base_response_function_capability_response.py,sha256=TGwwQl2SyW4KCLswx6i3fx9IBJ6XD1VtBit8fhMY4jA,4714
|
|
99
95
|
revengai/models/base_response_function_data_types.py,sha256=hDJI7um-R08IWlLJkRIBjWqyX1m6ywW_Xgub_q1JdYA,4642
|
|
@@ -101,7 +97,6 @@ revengai/models/base_response_function_data_types_list.py,sha256=HYLqwEMDT6KwLGo
|
|
|
101
97
|
revengai/models/base_response_function_search_response.py,sha256=kuxHRdbZnE9FEop1mlw5ToY9RVDi85MA_OQ5o1SsAGc,4682
|
|
102
98
|
revengai/models/base_response_function_strings_response.py,sha256=jipj4xUk-PiC98oe08n6h5SsnR9yI-4Cyrn-pcFh8LQ,4690
|
|
103
99
|
revengai/models/base_response_function_task_response.py,sha256=MIEKrg44h48N0Z6bGCUftCDZk9JZ9MHzzypfcDj2x7o,4666
|
|
104
|
-
revengai/models/base_response_function_threat_score.py,sha256=8-9_JO5uVrBK4IxT6GcQHXnuD2MYsTrrZr8YcDExmCo,4658
|
|
105
100
|
revengai/models/base_response_functions_detail_response.py,sha256=hp9mxiteLJzcAG2U1OjDVaiLQCjWDEK72HT37KShGsk,4690
|
|
106
101
|
revengai/models/base_response_generate_function_data_types.py,sha256=ediuOA6r1ME-dNXF7XwqBhgS7nlLfZuVWC8VejdtTPw,4707
|
|
107
102
|
revengai/models/base_response_generation_status_list.py,sha256=KrzG1w31Y0tZYWQr8aoqSqQBvOKr61dgxiwRLlFks0s,4666
|
|
@@ -202,7 +197,6 @@ revengai/models/file_format.py,sha256=XpwEBufxq3zDOZi0EvShwZhm-O6dEJ25ZxJ46zvuYe
|
|
|
202
197
|
revengai/models/file_hashes.py,sha256=vAjMRVvB9GBGar-FZiV8VkG_h0304S7UNEg0aclT9P8,4659
|
|
203
198
|
revengai/models/file_metadata.py,sha256=BK3oI8Iat5leNewoD8ApE5iH-wrffCAi1lNXbM5RVRE,2954
|
|
204
199
|
revengai/models/filters.py,sha256=BO4gsERH6_P4gsRcbleZNHFNeyg7N5ir6mTIsQbXwdM,758
|
|
205
|
-
revengai/models/function_analysis_threat_score_data.py,sha256=QixPeMcTvWOm4-ekkNsiPJkWW0iUePZ6qvAZ-h3Ds5k,3532
|
|
206
200
|
revengai/models/function_batch_ann.py,sha256=85ems0hvPJVsMH89BuT7TPmqxIAVBci5ZPNBEFdN1tw,3291
|
|
207
201
|
revengai/models/function_block_destination_response.py,sha256=ffcxW67TIbLkO8P8D9_quP7J9T_PIgCZZXNSRIEii0I,3130
|
|
208
202
|
revengai/models/function_block_response.py,sha256=KxnssvtH_MUvgQH358TfVZofVKyRHQYftMX36N2zdBY,3960
|
|
@@ -223,10 +217,10 @@ revengai/models/function_info_output.py,sha256=iIxkZ6_KFSoz0NhbBXyNi7knPvWcIp-hm
|
|
|
223
217
|
revengai/models/function_local_variable_response.py,sha256=llv5alvfVXqxE3Cs6vt7qnQNyfwj4PBoxq_Sim65jic,2733
|
|
224
218
|
revengai/models/function_mapping.py,sha256=X4fa-lcMfO-40eVMtSTUPRpJlxdSZNEdzPTEOR0uAlg,2924
|
|
225
219
|
revengai/models/function_mapping_full.py,sha256=dax345vnk25zSPVVpAmCFrrOWXzFXW6OnhSs9zVIKpI,11948
|
|
226
|
-
revengai/models/function_matching_batch_response.py,sha256=
|
|
220
|
+
revengai/models/function_matching_batch_response.py,sha256=oBglZULIjMvbrlzjymWNKSNERVzftWH7hHBRC3uMoP0,4952
|
|
227
221
|
revengai/models/function_matching_filters.py,sha256=O5F1PIcPhbumH8z-4KbG7JNoUsx_H3wBZQU9kCZ_boI,3710
|
|
228
|
-
revengai/models/function_matching_request.py,sha256=
|
|
229
|
-
revengai/models/function_matching_result_with_best_match.py,sha256=
|
|
222
|
+
revengai/models/function_matching_request.py,sha256=V9SvbVDHayM21ZWjXbKJa4ggDOWhQTRN7r8E-12SjaU,4690
|
|
223
|
+
revengai/models/function_matching_result_with_best_match.py,sha256=87nF8Dq7b0bTmbpB_j5Upfsnv_hqAs_dZJ69zpLmQjs,4050
|
|
230
224
|
revengai/models/function_name_confidence_body.py,sha256=Dz8HvTUDn5YcyCie-KMXmOdy8yF8PD-m0XzwpRyyQmg,3415
|
|
231
225
|
revengai/models/function_name_history.py,sha256=INu3KWYUpQMFfWy6oWl5iSaxrlayKr-wvuiahRCzinI,3265
|
|
232
226
|
revengai/models/function_name_input.py,sha256=zKzb0qAJBZKadixsWnRfkTnFHdNGtS2i13QgSeHr4c0,2538
|
|
@@ -239,7 +233,6 @@ revengai/models/function_string.py,sha256=XT1Pr8FbFNMDqj16umYUkVEg7jqzywUtHGEVfn
|
|
|
239
233
|
revengai/models/function_strings_response.py,sha256=AuD55_lQILjDfh_PveG6iRMTb_36wUzKKh5iZh5wAVA,3202
|
|
240
234
|
revengai/models/function_task_response.py,sha256=LYrPw_-vGi7-DpJlxMoAxjLeawKtQ_TyJa3tzbEkfSk,2875
|
|
241
235
|
revengai/models/function_task_status.py,sha256=0Vy8HFVPjcp509WsHdkAf12aWFnqoZUk2uxg4SPWcd0,771
|
|
242
|
-
revengai/models/function_threat_score.py,sha256=BK6SvaITutoQd5b1c2AHKYmYeiRtMpU2jcTzINYKdRU,3169
|
|
243
236
|
revengai/models/function_type_input.py,sha256=QMdRJxMDBAgs5Gk84qSGPTkYH505AOg3-5IbR7j8bdc,4823
|
|
244
237
|
revengai/models/function_type_output.py,sha256=jQfK_UAaLh3Asm-JImdW56v2Eq0o05FSIQcGmsLIOHI,4827
|
|
245
238
|
revengai/models/functions_detail_response.py,sha256=FqXTOo1-VqLEadwpYsVvOVDOE1Y8W-nNm6f0805j0JM,4230
|
|
@@ -261,11 +254,12 @@ revengai/models/list_collection_results.py,sha256=ZYGFTvOQfI234u67tURX8J0jwb6q-A
|
|
|
261
254
|
revengai/models/login_request.py,sha256=48uYtkWFL_Q-hN64P1f15ExGJvbab9XLymBtDduQvg0,2684
|
|
262
255
|
revengai/models/login_response.py,sha256=O35cqntoQ68IdYCBtHTYhPXlDqw8CIlnK-bNjf6QMO0,2461
|
|
263
256
|
revengai/models/logs.py,sha256=cV_V-xN6q-yTd7eL-X89ugqz5ifWPsFPo6qYFgpS_Pw,2419
|
|
264
|
-
revengai/models/matched_function.py,sha256=
|
|
257
|
+
revengai/models/matched_function.py,sha256=UTMIoMa0xUSffexqQ5bjjSsehwFtjZ3-NDemz56Q1fM,4151
|
|
265
258
|
revengai/models/matched_function_suggestion.py,sha256=eNMKuAyJ94joT5It020lSujrporie50-ii_OCOk3KhY,2900
|
|
266
259
|
revengai/models/meta_model.py,sha256=GbyFJZ9kwvK1Gqg8QnJ1GHpaMs8cMht6j-MY1k0YSt0,2943
|
|
267
260
|
revengai/models/model_name.py,sha256=lVKok5pWyLcN1rhq1IYccC7uQQrPdyz1oohYRUMRrmw,1271
|
|
268
261
|
revengai/models/models_response.py,sha256=Ooo2HYuSI4llHg1wUMmyOsisPAXkPhR1y5BSiKh9ckg,2472
|
|
262
|
+
revengai/models/name_confidence.py,sha256=aVLK7raUE9IQcTEYW7GGjWDh2ciwkLHhlTWST-ZsD7s,2738
|
|
269
263
|
revengai/models/nearest_neighbor.py,sha256=iNNOEi_5Byh4lBshr77N7OWKx3hyFW47cxJNjnKwqKg,3980
|
|
270
264
|
revengai/models/network_overview_dns.py,sha256=Opx12khPVljqHvNf1nJaYV1_HBixed54602xPltzq54,3072
|
|
271
265
|
revengai/models/network_overview_dns_answer.py,sha256=-kL0ZdVz2xIxp5wOVsJre7Nh048UjD1mKLBbrVI5So0,2491
|
|
@@ -339,6 +333,6 @@ revengai/models/vulnerabilities.py,sha256=9t6uoZd3svWyfcZJjmj6zP731Dp47Apb25y8Qt
|
|
|
339
333
|
revengai/models/vulnerability.py,sha256=P7rAOAYU5JLLpcRr824-YJgZba5kPb_J9ALV3tSNfLQ,3688
|
|
340
334
|
revengai/models/vulnerability_type.py,sha256=SyOgfMmELYYc_H84oPkikBpjwngtG5Qw9Q_86a2TPr8,866
|
|
341
335
|
revengai/models/workspace.py,sha256=chjU62GFvByEmaNd6luMNQVQLP3wlPx1zJgGJ_yyMLA,676
|
|
342
|
-
revengai-1.
|
|
343
|
-
revengai-1.
|
|
344
|
-
revengai-1.
|
|
336
|
+
revengai-1.91.1.dist-info/METADATA,sha256=afFM1--V8KAEaq0OsGc_ZL4KGauSyaEgXwqU04i3PjM,41318
|
|
337
|
+
revengai-1.91.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
338
|
+
revengai-1.91.1.dist-info/RECORD,,
|