revengai 1.89.4__py3-none-any.whl → 1.92.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 +1 -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 +0 -6
- {revengai-1.89.4.dist-info → revengai-1.92.1.dist-info}/METADATA +1 -10
- {revengai-1.89.4.dist-info → revengai-1.92.1.dist-info}/RECORD +9 -16
- 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/models/function_threat_score.py +0 -99
- {revengai-1.89.4.dist-info → revengai-1.92.1.dist-info}/WHEEL +0 -0
revengai/__init__.py
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
""" # noqa: E501
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
__version__ = "v1.
|
|
16
|
+
__version__ = "v1.92.1"
|
|
17
17
|
|
|
18
18
|
# Define package exports
|
|
19
19
|
__all__ = [
|
|
@@ -34,7 +34,6 @@ __all__ = [
|
|
|
34
34
|
"FunctionsDataTypesApi",
|
|
35
35
|
"FunctionsDecompilationApi",
|
|
36
36
|
"FunctionsRenamingHistoryApi",
|
|
37
|
-
"FunctionsThreatScoreApi",
|
|
38
37
|
"ModelsApi",
|
|
39
38
|
"SearchApi",
|
|
40
39
|
"ApiResponse",
|
|
@@ -61,7 +60,6 @@ __all__ = [
|
|
|
61
60
|
"AnalysisScope",
|
|
62
61
|
"AnalysisStringsResponse",
|
|
63
62
|
"AnalysisTags",
|
|
64
|
-
"AnalysisThreatScoreData",
|
|
65
63
|
"AnalysisUpdateRequest",
|
|
66
64
|
"AnalysisUpdateTagsRequest",
|
|
67
65
|
"AnalysisUpdateTagsResponse",
|
|
@@ -85,7 +83,6 @@ __all__ = [
|
|
|
85
83
|
"BaseResponseAnalysisFunctions",
|
|
86
84
|
"BaseResponseAnalysisStringsResponse",
|
|
87
85
|
"BaseResponseAnalysisTags",
|
|
88
|
-
"BaseResponseAnalysisThreatScoreData",
|
|
89
86
|
"BaseResponseAnalysisUpdateTagsResponse",
|
|
90
87
|
"BaseResponseBasic",
|
|
91
88
|
"BaseResponseBinaryAdditionalResponse",
|
|
@@ -112,7 +109,6 @@ __all__ = [
|
|
|
112
109
|
"BaseResponseDict",
|
|
113
110
|
"BaseResponseDynamicExecutionStatus",
|
|
114
111
|
"BaseResponseExternalResponse",
|
|
115
|
-
"BaseResponseFunctionAnalysisThreatScoreData",
|
|
116
112
|
"BaseResponseFunctionBlocksResponse",
|
|
117
113
|
"BaseResponseFunctionCapabilityResponse",
|
|
118
114
|
"BaseResponseFunctionDataTypes",
|
|
@@ -120,7 +116,6 @@ __all__ = [
|
|
|
120
116
|
"BaseResponseFunctionSearchResponse",
|
|
121
117
|
"BaseResponseFunctionStringsResponse",
|
|
122
118
|
"BaseResponseFunctionTaskResponse",
|
|
123
|
-
"BaseResponseFunctionThreatScore",
|
|
124
119
|
"BaseResponseFunctionsDetailResponse",
|
|
125
120
|
"BaseResponseGenerateFunctionDataTypes",
|
|
126
121
|
"BaseResponseGenerationStatusList",
|
|
@@ -221,7 +216,6 @@ __all__ = [
|
|
|
221
216
|
"FileHashes",
|
|
222
217
|
"FileMetadata",
|
|
223
218
|
"Filters",
|
|
224
|
-
"FunctionAnalysisThreatScoreData",
|
|
225
219
|
"FunctionBatchAnn",
|
|
226
220
|
"FunctionBlockDestinationResponse",
|
|
227
221
|
"FunctionBlockResponse",
|
|
@@ -258,7 +252,6 @@ __all__ = [
|
|
|
258
252
|
"FunctionStringsResponse",
|
|
259
253
|
"FunctionTaskResponse",
|
|
260
254
|
"FunctionTaskStatus",
|
|
261
|
-
"FunctionThreatScore",
|
|
262
255
|
"FunctionTypeInput",
|
|
263
256
|
"FunctionTypeOutput",
|
|
264
257
|
"FunctionsDetailResponse",
|
|
@@ -379,7 +372,6 @@ from revengai.api.functions_core_api import FunctionsCoreApi as FunctionsCoreApi
|
|
|
379
372
|
from revengai.api.functions_data_types_api import FunctionsDataTypesApi as FunctionsDataTypesApi
|
|
380
373
|
from revengai.api.functions_decompilation_api import FunctionsDecompilationApi as FunctionsDecompilationApi
|
|
381
374
|
from revengai.api.functions_renaming_history_api import FunctionsRenamingHistoryApi as FunctionsRenamingHistoryApi
|
|
382
|
-
from revengai.api.functions_threat_score_api import FunctionsThreatScoreApi as FunctionsThreatScoreApi
|
|
383
375
|
from revengai.api.models_api import ModelsApi as ModelsApi
|
|
384
376
|
from revengai.api.search_api import SearchApi as SearchApi
|
|
385
377
|
|
|
@@ -410,7 +402,6 @@ from revengai.models.analysis_record import AnalysisRecord as AnalysisRecord
|
|
|
410
402
|
from revengai.models.analysis_scope import AnalysisScope as AnalysisScope
|
|
411
403
|
from revengai.models.analysis_strings_response import AnalysisStringsResponse as AnalysisStringsResponse
|
|
412
404
|
from revengai.models.analysis_tags import AnalysisTags as AnalysisTags
|
|
413
|
-
from revengai.models.analysis_threat_score_data import AnalysisThreatScoreData as AnalysisThreatScoreData
|
|
414
405
|
from revengai.models.analysis_update_request import AnalysisUpdateRequest as AnalysisUpdateRequest
|
|
415
406
|
from revengai.models.analysis_update_tags_request import AnalysisUpdateTagsRequest as AnalysisUpdateTagsRequest
|
|
416
407
|
from revengai.models.analysis_update_tags_response import AnalysisUpdateTagsResponse as AnalysisUpdateTagsResponse
|
|
@@ -434,7 +425,6 @@ from revengai.models.base_response_analysis_function_mapping import BaseResponse
|
|
|
434
425
|
from revengai.models.base_response_analysis_functions import BaseResponseAnalysisFunctions as BaseResponseAnalysisFunctions
|
|
435
426
|
from revengai.models.base_response_analysis_strings_response import BaseResponseAnalysisStringsResponse as BaseResponseAnalysisStringsResponse
|
|
436
427
|
from revengai.models.base_response_analysis_tags import BaseResponseAnalysisTags as BaseResponseAnalysisTags
|
|
437
|
-
from revengai.models.base_response_analysis_threat_score_data import BaseResponseAnalysisThreatScoreData as BaseResponseAnalysisThreatScoreData
|
|
438
428
|
from revengai.models.base_response_analysis_update_tags_response import BaseResponseAnalysisUpdateTagsResponse as BaseResponseAnalysisUpdateTagsResponse
|
|
439
429
|
from revengai.models.base_response_basic import BaseResponseBasic as BaseResponseBasic
|
|
440
430
|
from revengai.models.base_response_binary_additional_response import BaseResponseBinaryAdditionalResponse as BaseResponseBinaryAdditionalResponse
|
|
@@ -461,7 +451,6 @@ from revengai.models.base_response_decompilation_response import BaseResponseDec
|
|
|
461
451
|
from revengai.models.base_response_dict import BaseResponseDict as BaseResponseDict
|
|
462
452
|
from revengai.models.base_response_dynamic_execution_status import BaseResponseDynamicExecutionStatus as BaseResponseDynamicExecutionStatus
|
|
463
453
|
from revengai.models.base_response_external_response import BaseResponseExternalResponse as BaseResponseExternalResponse
|
|
464
|
-
from revengai.models.base_response_function_analysis_threat_score_data import BaseResponseFunctionAnalysisThreatScoreData as BaseResponseFunctionAnalysisThreatScoreData
|
|
465
454
|
from revengai.models.base_response_function_blocks_response import BaseResponseFunctionBlocksResponse as BaseResponseFunctionBlocksResponse
|
|
466
455
|
from revengai.models.base_response_function_capability_response import BaseResponseFunctionCapabilityResponse as BaseResponseFunctionCapabilityResponse
|
|
467
456
|
from revengai.models.base_response_function_data_types import BaseResponseFunctionDataTypes as BaseResponseFunctionDataTypes
|
|
@@ -469,7 +458,6 @@ from revengai.models.base_response_function_data_types_list import BaseResponseF
|
|
|
469
458
|
from revengai.models.base_response_function_search_response import BaseResponseFunctionSearchResponse as BaseResponseFunctionSearchResponse
|
|
470
459
|
from revengai.models.base_response_function_strings_response import BaseResponseFunctionStringsResponse as BaseResponseFunctionStringsResponse
|
|
471
460
|
from revengai.models.base_response_function_task_response import BaseResponseFunctionTaskResponse as BaseResponseFunctionTaskResponse
|
|
472
|
-
from revengai.models.base_response_function_threat_score import BaseResponseFunctionThreatScore as BaseResponseFunctionThreatScore
|
|
473
461
|
from revengai.models.base_response_functions_detail_response import BaseResponseFunctionsDetailResponse as BaseResponseFunctionsDetailResponse
|
|
474
462
|
from revengai.models.base_response_generate_function_data_types import BaseResponseGenerateFunctionDataTypes as BaseResponseGenerateFunctionDataTypes
|
|
475
463
|
from revengai.models.base_response_generation_status_list import BaseResponseGenerationStatusList as BaseResponseGenerationStatusList
|
|
@@ -570,7 +558,6 @@ from revengai.models.file_format import FileFormat as FileFormat
|
|
|
570
558
|
from revengai.models.file_hashes import FileHashes as FileHashes
|
|
571
559
|
from revengai.models.file_metadata import FileMetadata as FileMetadata
|
|
572
560
|
from revengai.models.filters import Filters as Filters
|
|
573
|
-
from revengai.models.function_analysis_threat_score_data import FunctionAnalysisThreatScoreData as FunctionAnalysisThreatScoreData
|
|
574
561
|
from revengai.models.function_batch_ann import FunctionBatchAnn as FunctionBatchAnn
|
|
575
562
|
from revengai.models.function_block_destination_response import FunctionBlockDestinationResponse as FunctionBlockDestinationResponse
|
|
576
563
|
from revengai.models.function_block_response import FunctionBlockResponse as FunctionBlockResponse
|
|
@@ -607,7 +594,6 @@ from revengai.models.function_string import FunctionString as FunctionString
|
|
|
607
594
|
from revengai.models.function_strings_response import FunctionStringsResponse as FunctionStringsResponse
|
|
608
595
|
from revengai.models.function_task_response import FunctionTaskResponse as FunctionTaskResponse
|
|
609
596
|
from revengai.models.function_task_status import FunctionTaskStatus as FunctionTaskStatus
|
|
610
|
-
from revengai.models.function_threat_score import FunctionThreatScore as FunctionThreatScore
|
|
611
597
|
from revengai.models.function_type_input import FunctionTypeInput as FunctionTypeInput
|
|
612
598
|
from revengai.models.function_type_output import FunctionTypeOutput as FunctionTypeOutput
|
|
613
599
|
from revengai.models.functions_detail_response import FunctionsDetailResponse as FunctionsDetailResponse
|
revengai/api/__init__.py
CHANGED
|
@@ -18,7 +18,6 @@ from revengai.api.functions_core_api import FunctionsCoreApi
|
|
|
18
18
|
from revengai.api.functions_data_types_api import FunctionsDataTypesApi
|
|
19
19
|
from revengai.api.functions_decompilation_api import FunctionsDecompilationApi
|
|
20
20
|
from revengai.api.functions_renaming_history_api import FunctionsRenamingHistoryApi
|
|
21
|
-
from revengai.api.functions_threat_score_api import FunctionsThreatScoreApi
|
|
22
21
|
from revengai.api.models_api import ModelsApi
|
|
23
22
|
from revengai.api.search_api import SearchApi
|
|
24
23
|
|
|
@@ -20,7 +20,6 @@ from typing import Any, Optional
|
|
|
20
20
|
from typing_extensions import Annotated
|
|
21
21
|
from revengai.models.base_response_analysis_functions import BaseResponseAnalysisFunctions
|
|
22
22
|
from revengai.models.base_response_analysis_tags import BaseResponseAnalysisTags
|
|
23
|
-
from revengai.models.base_response_analysis_threat_score_data import BaseResponseAnalysisThreatScoreData
|
|
24
23
|
from revengai.models.base_response_capabilities import BaseResponseCapabilities
|
|
25
24
|
from revengai.models.base_response_communities import BaseResponseCommunities
|
|
26
25
|
from revengai.models.base_response_list_sbom import BaseResponseListSBOM
|
|
@@ -1771,282 +1770,6 @@ class AnalysesResultsMetadataApi:
|
|
|
1771
1770
|
|
|
1772
1771
|
|
|
1773
1772
|
|
|
1774
|
-
@validate_call
|
|
1775
|
-
def get_threat_score(
|
|
1776
|
-
self,
|
|
1777
|
-
analysis_id: StrictInt,
|
|
1778
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1779
|
-
_request_timeout: Union[
|
|
1780
|
-
None,
|
|
1781
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
1782
|
-
Tuple[
|
|
1783
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
1784
|
-
Annotated[StrictFloat, Field(gt=0)]
|
|
1785
|
-
]
|
|
1786
|
-
] = None,
|
|
1787
|
-
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1788
|
-
_content_type: Optional[StrictStr] = None,
|
|
1789
|
-
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1790
|
-
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1791
|
-
) -> BaseResponseAnalysisThreatScoreData:
|
|
1792
|
-
"""Gets the threat score found in the analysis
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
:param analysis_id: (required)
|
|
1796
|
-
:type analysis_id: int
|
|
1797
|
-
:param authorization: API Key bearer token
|
|
1798
|
-
:type authorization: str
|
|
1799
|
-
:param _request_timeout: timeout setting for this request. If one
|
|
1800
|
-
number provided, it will be total request
|
|
1801
|
-
timeout. It can also be a pair (tuple) of
|
|
1802
|
-
(connection, read) timeouts.
|
|
1803
|
-
:type _request_timeout: int, tuple(int, int), optional
|
|
1804
|
-
:param _request_auth: set to override the auth_settings for an a single
|
|
1805
|
-
request; this effectively ignores the
|
|
1806
|
-
authentication in the spec for a single request.
|
|
1807
|
-
:type _request_auth: dict, optional
|
|
1808
|
-
:param _content_type: force content-type for the request.
|
|
1809
|
-
:type _content_type: str, Optional
|
|
1810
|
-
:param _headers: set to override the headers for a single
|
|
1811
|
-
request; this effectively ignores the headers
|
|
1812
|
-
in the spec for a single request.
|
|
1813
|
-
:type _headers: dict, optional
|
|
1814
|
-
:param _host_index: set to override the host_index for a single
|
|
1815
|
-
request; this effectively ignores the host_index
|
|
1816
|
-
in the spec for a single request.
|
|
1817
|
-
:type _host_index: int, optional
|
|
1818
|
-
:return: Returns the result object.
|
|
1819
|
-
""" # noqa: E501
|
|
1820
|
-
|
|
1821
|
-
_param = self._get_threat_score_serialize(
|
|
1822
|
-
analysis_id=analysis_id,
|
|
1823
|
-
authorization=authorization,
|
|
1824
|
-
_request_auth=_request_auth,
|
|
1825
|
-
_content_type=_content_type,
|
|
1826
|
-
_headers=_headers,
|
|
1827
|
-
_host_index=_host_index
|
|
1828
|
-
)
|
|
1829
|
-
|
|
1830
|
-
_response_types_map: Dict[str, Optional[str]] = {
|
|
1831
|
-
'200': "BaseResponseAnalysisThreatScoreData",
|
|
1832
|
-
'422': "BaseResponse",
|
|
1833
|
-
}
|
|
1834
|
-
response_data = self.api_client.call_api(
|
|
1835
|
-
*_param,
|
|
1836
|
-
_request_timeout=_request_timeout
|
|
1837
|
-
)
|
|
1838
|
-
response_data.read()
|
|
1839
|
-
return self.api_client.response_deserialize(
|
|
1840
|
-
response_data=response_data,
|
|
1841
|
-
response_types_map=_response_types_map,
|
|
1842
|
-
).data
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
@validate_call
|
|
1846
|
-
def get_threat_score_with_http_info(
|
|
1847
|
-
self,
|
|
1848
|
-
analysis_id: StrictInt,
|
|
1849
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1850
|
-
_request_timeout: Union[
|
|
1851
|
-
None,
|
|
1852
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
1853
|
-
Tuple[
|
|
1854
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
1855
|
-
Annotated[StrictFloat, Field(gt=0)]
|
|
1856
|
-
]
|
|
1857
|
-
] = None,
|
|
1858
|
-
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1859
|
-
_content_type: Optional[StrictStr] = None,
|
|
1860
|
-
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1861
|
-
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1862
|
-
) -> ApiResponse[BaseResponseAnalysisThreatScoreData]:
|
|
1863
|
-
"""Gets the threat score found in the analysis
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
:param analysis_id: (required)
|
|
1867
|
-
:type analysis_id: int
|
|
1868
|
-
:param authorization: API Key bearer token
|
|
1869
|
-
:type authorization: str
|
|
1870
|
-
:param _request_timeout: timeout setting for this request. If one
|
|
1871
|
-
number provided, it will be total request
|
|
1872
|
-
timeout. It can also be a pair (tuple) of
|
|
1873
|
-
(connection, read) timeouts.
|
|
1874
|
-
:type _request_timeout: int, tuple(int, int), optional
|
|
1875
|
-
:param _request_auth: set to override the auth_settings for an a single
|
|
1876
|
-
request; this effectively ignores the
|
|
1877
|
-
authentication in the spec for a single request.
|
|
1878
|
-
:type _request_auth: dict, optional
|
|
1879
|
-
:param _content_type: force content-type for the request.
|
|
1880
|
-
:type _content_type: str, Optional
|
|
1881
|
-
:param _headers: set to override the headers for a single
|
|
1882
|
-
request; this effectively ignores the headers
|
|
1883
|
-
in the spec for a single request.
|
|
1884
|
-
:type _headers: dict, optional
|
|
1885
|
-
:param _host_index: set to override the host_index for a single
|
|
1886
|
-
request; this effectively ignores the host_index
|
|
1887
|
-
in the spec for a single request.
|
|
1888
|
-
:type _host_index: int, optional
|
|
1889
|
-
:return: Returns the result object.
|
|
1890
|
-
""" # noqa: E501
|
|
1891
|
-
|
|
1892
|
-
_param = self._get_threat_score_serialize(
|
|
1893
|
-
analysis_id=analysis_id,
|
|
1894
|
-
authorization=authorization,
|
|
1895
|
-
_request_auth=_request_auth,
|
|
1896
|
-
_content_type=_content_type,
|
|
1897
|
-
_headers=_headers,
|
|
1898
|
-
_host_index=_host_index
|
|
1899
|
-
)
|
|
1900
|
-
|
|
1901
|
-
_response_types_map: Dict[str, Optional[str]] = {
|
|
1902
|
-
'200': "BaseResponseAnalysisThreatScoreData",
|
|
1903
|
-
'422': "BaseResponse",
|
|
1904
|
-
}
|
|
1905
|
-
response_data = self.api_client.call_api(
|
|
1906
|
-
*_param,
|
|
1907
|
-
_request_timeout=_request_timeout
|
|
1908
|
-
)
|
|
1909
|
-
response_data.read()
|
|
1910
|
-
return self.api_client.response_deserialize(
|
|
1911
|
-
response_data=response_data,
|
|
1912
|
-
response_types_map=_response_types_map,
|
|
1913
|
-
)
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
@validate_call
|
|
1917
|
-
def get_threat_score_without_preload_content(
|
|
1918
|
-
self,
|
|
1919
|
-
analysis_id: StrictInt,
|
|
1920
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1921
|
-
_request_timeout: Union[
|
|
1922
|
-
None,
|
|
1923
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
1924
|
-
Tuple[
|
|
1925
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
1926
|
-
Annotated[StrictFloat, Field(gt=0)]
|
|
1927
|
-
]
|
|
1928
|
-
] = None,
|
|
1929
|
-
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1930
|
-
_content_type: Optional[StrictStr] = None,
|
|
1931
|
-
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1932
|
-
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1933
|
-
) -> RESTResponseType:
|
|
1934
|
-
"""Gets the threat score found in the analysis
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
:param analysis_id: (required)
|
|
1938
|
-
:type analysis_id: int
|
|
1939
|
-
:param authorization: API Key bearer token
|
|
1940
|
-
:type authorization: str
|
|
1941
|
-
:param _request_timeout: timeout setting for this request. If one
|
|
1942
|
-
number provided, it will be total request
|
|
1943
|
-
timeout. It can also be a pair (tuple) of
|
|
1944
|
-
(connection, read) timeouts.
|
|
1945
|
-
:type _request_timeout: int, tuple(int, int), optional
|
|
1946
|
-
:param _request_auth: set to override the auth_settings for an a single
|
|
1947
|
-
request; this effectively ignores the
|
|
1948
|
-
authentication in the spec for a single request.
|
|
1949
|
-
:type _request_auth: dict, optional
|
|
1950
|
-
:param _content_type: force content-type for the request.
|
|
1951
|
-
:type _content_type: str, Optional
|
|
1952
|
-
:param _headers: set to override the headers for a single
|
|
1953
|
-
request; this effectively ignores the headers
|
|
1954
|
-
in the spec for a single request.
|
|
1955
|
-
:type _headers: dict, optional
|
|
1956
|
-
:param _host_index: set to override the host_index for a single
|
|
1957
|
-
request; this effectively ignores the host_index
|
|
1958
|
-
in the spec for a single request.
|
|
1959
|
-
:type _host_index: int, optional
|
|
1960
|
-
:return: Returns the result object.
|
|
1961
|
-
""" # noqa: E501
|
|
1962
|
-
|
|
1963
|
-
_param = self._get_threat_score_serialize(
|
|
1964
|
-
analysis_id=analysis_id,
|
|
1965
|
-
authorization=authorization,
|
|
1966
|
-
_request_auth=_request_auth,
|
|
1967
|
-
_content_type=_content_type,
|
|
1968
|
-
_headers=_headers,
|
|
1969
|
-
_host_index=_host_index
|
|
1970
|
-
)
|
|
1971
|
-
|
|
1972
|
-
_response_types_map: Dict[str, Optional[str]] = {
|
|
1973
|
-
'200': "BaseResponseAnalysisThreatScoreData",
|
|
1974
|
-
'422': "BaseResponse",
|
|
1975
|
-
}
|
|
1976
|
-
response_data = self.api_client.call_api(
|
|
1977
|
-
*_param,
|
|
1978
|
-
_request_timeout=_request_timeout
|
|
1979
|
-
)
|
|
1980
|
-
return response_data.response
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
def _get_threat_score_serialize(
|
|
1984
|
-
self,
|
|
1985
|
-
analysis_id,
|
|
1986
|
-
authorization,
|
|
1987
|
-
_request_auth,
|
|
1988
|
-
_content_type,
|
|
1989
|
-
_headers,
|
|
1990
|
-
_host_index,
|
|
1991
|
-
) -> RequestSerialized:
|
|
1992
|
-
|
|
1993
|
-
_host = None
|
|
1994
|
-
|
|
1995
|
-
_collection_formats: Dict[str, str] = {
|
|
1996
|
-
}
|
|
1997
|
-
|
|
1998
|
-
_path_params: Dict[str, str] = {}
|
|
1999
|
-
_query_params: List[Tuple[str, str]] = []
|
|
2000
|
-
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
2001
|
-
_form_params: List[Tuple[str, str]] = []
|
|
2002
|
-
_files: Dict[
|
|
2003
|
-
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
2004
|
-
] = {}
|
|
2005
|
-
_body_params: Optional[bytes] = None
|
|
2006
|
-
|
|
2007
|
-
# process the path parameters
|
|
2008
|
-
if analysis_id is not None:
|
|
2009
|
-
_path_params['analysis_id'] = analysis_id
|
|
2010
|
-
# process the query parameters
|
|
2011
|
-
# process the header parameters
|
|
2012
|
-
if authorization is not None:
|
|
2013
|
-
_header_params['authorization'] = authorization
|
|
2014
|
-
# process the form parameters
|
|
2015
|
-
# process the body parameter
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
# set the HTTP header `Accept`
|
|
2019
|
-
if 'Accept' not in _header_params:
|
|
2020
|
-
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2021
|
-
[
|
|
2022
|
-
'application/json'
|
|
2023
|
-
]
|
|
2024
|
-
)
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
# authentication setting
|
|
2028
|
-
_auth_settings: List[str] = [
|
|
2029
|
-
'APIKey'
|
|
2030
|
-
]
|
|
2031
|
-
|
|
2032
|
-
return self.api_client.param_serialize(
|
|
2033
|
-
method='GET',
|
|
2034
|
-
resource_path='/v2/analyses/{analysis_id}/threat_score',
|
|
2035
|
-
path_params=_path_params,
|
|
2036
|
-
query_params=_query_params,
|
|
2037
|
-
header_params=_header_params,
|
|
2038
|
-
body=_body_params,
|
|
2039
|
-
post_params=_form_params,
|
|
2040
|
-
files=_files,
|
|
2041
|
-
auth_settings=_auth_settings,
|
|
2042
|
-
collection_formats=_collection_formats,
|
|
2043
|
-
_host=_host,
|
|
2044
|
-
_request_auth=_request_auth
|
|
2045
|
-
)
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
1773
|
@validate_call
|
|
2051
1774
|
def get_vulnerabilities(
|
|
2052
1775
|
self,
|
revengai/api_client.py
CHANGED
|
@@ -90,7 +90,7 @@ class ApiClient:
|
|
|
90
90
|
self.default_headers[header_name] = header_value
|
|
91
91
|
self.cookie = cookie
|
|
92
92
|
# Set default User-Agent.
|
|
93
|
-
self.user_agent = 'OpenAPI-Generator/v1.
|
|
93
|
+
self.user_agent = 'OpenAPI-Generator/v1.92.1/python'
|
|
94
94
|
self.client_side_validation = configuration.client_side_validation
|
|
95
95
|
|
|
96
96
|
def __enter__(self):
|
revengai/configuration.py
CHANGED
|
@@ -529,8 +529,8 @@ conf = revengai.Configuration(
|
|
|
529
529
|
return "Python SDK Debug Report:\n"\
|
|
530
530
|
"OS: {env}\n"\
|
|
531
531
|
"Python Version: {pyversion}\n"\
|
|
532
|
-
"Version of the API: v1.
|
|
533
|
-
"SDK Package Version: v1.
|
|
532
|
+
"Version of the API: v1.92.1\n"\
|
|
533
|
+
"SDK Package Version: v1.92.1".\
|
|
534
534
|
format(env=sys.platform, pyversion=sys.version)
|
|
535
535
|
|
|
536
536
|
def get_host_settings(self) -> List[HostSetting]:
|
revengai/models/__init__.py
CHANGED
|
@@ -27,7 +27,6 @@ from revengai.models.analysis_record import AnalysisRecord
|
|
|
27
27
|
from revengai.models.analysis_scope import AnalysisScope
|
|
28
28
|
from revengai.models.analysis_strings_response import AnalysisStringsResponse
|
|
29
29
|
from revengai.models.analysis_tags import AnalysisTags
|
|
30
|
-
from revengai.models.analysis_threat_score_data import AnalysisThreatScoreData
|
|
31
30
|
from revengai.models.analysis_update_request import AnalysisUpdateRequest
|
|
32
31
|
from revengai.models.analysis_update_tags_request import AnalysisUpdateTagsRequest
|
|
33
32
|
from revengai.models.analysis_update_tags_response import AnalysisUpdateTagsResponse
|
|
@@ -51,7 +50,6 @@ from revengai.models.base_response_analysis_function_mapping import BaseResponse
|
|
|
51
50
|
from revengai.models.base_response_analysis_functions import BaseResponseAnalysisFunctions
|
|
52
51
|
from revengai.models.base_response_analysis_strings_response import BaseResponseAnalysisStringsResponse
|
|
53
52
|
from revengai.models.base_response_analysis_tags import BaseResponseAnalysisTags
|
|
54
|
-
from revengai.models.base_response_analysis_threat_score_data import BaseResponseAnalysisThreatScoreData
|
|
55
53
|
from revengai.models.base_response_analysis_update_tags_response import BaseResponseAnalysisUpdateTagsResponse
|
|
56
54
|
from revengai.models.base_response_basic import BaseResponseBasic
|
|
57
55
|
from revengai.models.base_response_binary_additional_response import BaseResponseBinaryAdditionalResponse
|
|
@@ -78,7 +76,6 @@ from revengai.models.base_response_decompilation_response import BaseResponseDec
|
|
|
78
76
|
from revengai.models.base_response_dict import BaseResponseDict
|
|
79
77
|
from revengai.models.base_response_dynamic_execution_status import BaseResponseDynamicExecutionStatus
|
|
80
78
|
from revengai.models.base_response_external_response import BaseResponseExternalResponse
|
|
81
|
-
from revengai.models.base_response_function_analysis_threat_score_data import BaseResponseFunctionAnalysisThreatScoreData
|
|
82
79
|
from revengai.models.base_response_function_blocks_response import BaseResponseFunctionBlocksResponse
|
|
83
80
|
from revengai.models.base_response_function_capability_response import BaseResponseFunctionCapabilityResponse
|
|
84
81
|
from revengai.models.base_response_function_data_types import BaseResponseFunctionDataTypes
|
|
@@ -86,7 +83,6 @@ from revengai.models.base_response_function_data_types_list import BaseResponseF
|
|
|
86
83
|
from revengai.models.base_response_function_search_response import BaseResponseFunctionSearchResponse
|
|
87
84
|
from revengai.models.base_response_function_strings_response import BaseResponseFunctionStringsResponse
|
|
88
85
|
from revengai.models.base_response_function_task_response import BaseResponseFunctionTaskResponse
|
|
89
|
-
from revengai.models.base_response_function_threat_score import BaseResponseFunctionThreatScore
|
|
90
86
|
from revengai.models.base_response_functions_detail_response import BaseResponseFunctionsDetailResponse
|
|
91
87
|
from revengai.models.base_response_generate_function_data_types import BaseResponseGenerateFunctionDataTypes
|
|
92
88
|
from revengai.models.base_response_generation_status_list import BaseResponseGenerationStatusList
|
|
@@ -187,7 +183,6 @@ from revengai.models.file_format import FileFormat
|
|
|
187
183
|
from revengai.models.file_hashes import FileHashes
|
|
188
184
|
from revengai.models.file_metadata import FileMetadata
|
|
189
185
|
from revengai.models.filters import Filters
|
|
190
|
-
from revengai.models.function_analysis_threat_score_data import FunctionAnalysisThreatScoreData
|
|
191
186
|
from revengai.models.function_batch_ann import FunctionBatchAnn
|
|
192
187
|
from revengai.models.function_block_destination_response import FunctionBlockDestinationResponse
|
|
193
188
|
from revengai.models.function_block_response import FunctionBlockResponse
|
|
@@ -224,7 +219,6 @@ from revengai.models.function_string import FunctionString
|
|
|
224
219
|
from revengai.models.function_strings_response import FunctionStringsResponse
|
|
225
220
|
from revengai.models.function_task_response import FunctionTaskResponse
|
|
226
221
|
from revengai.models.function_task_status import FunctionTaskStatus
|
|
227
|
-
from revengai.models.function_threat_score import FunctionThreatScore
|
|
228
222
|
from revengai.models.function_type_input import FunctionTypeInput
|
|
229
223
|
from revengai.models.function_type_output import FunctionTypeOutput
|
|
230
224
|
from revengai.models.functions_detail_response import FunctionsDetailResponse
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: revengai
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.92.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)
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
revengai/__init__.py,sha256=
|
|
2
|
-
revengai/api_client.py,sha256=
|
|
1
|
+
revengai/__init__.py,sha256=uVzo-0F2kGl5iAZ_GcAiRoR1NFVJpxyNxf8xvua6NGw,43030
|
|
2
|
+
revengai/api_client.py,sha256=s1kR5EmKz8uUxhRqmrAfcwFVldGYWTK7PjcZKU-7F_w,27670
|
|
3
3
|
revengai/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
revengai/configuration.py,sha256=
|
|
4
|
+
revengai/configuration.py,sha256=8w1fmJlVUej7sSKInOtT-4Xy869nCHSH-f32uOfoJqY,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
|
|
@@ -42,7 +41,6 @@ revengai/models/analysis_record.py,sha256=DxnERhF-s5AilH804yKtMAOyXhhjWQsq0ned1j
|
|
|
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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -340,6 +333,6 @@ revengai/models/vulnerabilities.py,sha256=9t6uoZd3svWyfcZJjmj6zP731Dp47Apb25y8Qt
|
|
|
340
333
|
revengai/models/vulnerability.py,sha256=P7rAOAYU5JLLpcRr824-YJgZba5kPb_J9ALV3tSNfLQ,3688
|
|
341
334
|
revengai/models/vulnerability_type.py,sha256=SyOgfMmELYYc_H84oPkikBpjwngtG5Qw9Q_86a2TPr8,866
|
|
342
335
|
revengai/models/workspace.py,sha256=chjU62GFvByEmaNd6luMNQVQLP3wlPx1zJgGJ_yyMLA,676
|
|
343
|
-
revengai-1.
|
|
344
|
-
revengai-1.
|
|
345
|
-
revengai-1.
|
|
336
|
+
revengai-1.92.1.dist-info/METADATA,sha256=Azp-aDvRQMHAyQeR4p_BxMuCxaW4n0YOb5p72gafUnc,41318
|
|
337
|
+
revengai-1.92.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
338
|
+
revengai-1.92.1.dist-info/RECORD,,
|