revengai 1.94.0__py3-none-any.whl → 1.96.0__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 -1
- revengai/api/analyses_comments_api.py +1 -62
- revengai/api/analyses_core_api.py +0 -240
- revengai/api/analyses_dynamic_execution_api.py +2 -108
- revengai/api/analyses_results_metadata_api.py +0 -105
- revengai/api/analyses_security_checks_api.py +1 -47
- revengai/api/authentication_users_api.py +1 -63
- revengai/api/binaries_api.py +2 -93
- revengai/api/collections_api.py +0 -105
- revengai/api/confidence_api.py +1 -62
- revengai/api/external_sources_api.py +1 -93
- revengai/api/firmware_api.py +1 -32
- revengai/api/functions_ai_decompilation_api.py +1 -136
- revengai/api/functions_block_comments_api.py +1 -48
- revengai/api/functions_core_api.py +0 -195
- revengai/api/functions_data_types_api.py +1 -92
- revengai/api/functions_decompilation_api.py +1 -107
- revengai/api/functions_renaming_history_api.py +1 -63
- revengai/api/models_api.py +0 -18
- revengai/api/search_api.py +0 -45
- revengai/api_client.py +1 -1
- revengai/configuration.py +2 -2
- {revengai-1.94.0.dist-info → revengai-1.96.0.dist-info}/METADATA +4 -2
- {revengai-1.94.0.dist-info → revengai-1.96.0.dist-info}/RECORD +26 -25
- revengai-1.96.0.dist-info/licenses/LICENSE.md +19 -0
- {revengai-1.94.0.dist-info → revengai-1.96.0.dist-info}/WHEEL +0 -0
revengai/api/search_api.py
CHANGED
|
@@ -54,7 +54,6 @@ class SearchApi:
|
|
|
54
54
|
tags: Annotated[Optional[List[StrictStr]], Field(description="The tags to be searched for")] = None,
|
|
55
55
|
model_name: Annotated[Optional[StrictStr], Field(description="The name of the model used to analyze the binary the function belongs to")] = None,
|
|
56
56
|
user_files_only: Annotated[Optional[StrictBool], Field(description="Whether to only search user's uploaded files")] = None,
|
|
57
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
58
57
|
_request_timeout: Union[
|
|
59
58
|
None,
|
|
60
59
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -86,8 +85,6 @@ class SearchApi:
|
|
|
86
85
|
:type model_name: str
|
|
87
86
|
:param user_files_only: Whether to only search user's uploaded files
|
|
88
87
|
:type user_files_only: bool
|
|
89
|
-
:param authorization: API Key bearer token
|
|
90
|
-
:type authorization: str
|
|
91
88
|
:param _request_timeout: timeout setting for this request. If one
|
|
92
89
|
number provided, it will be total request
|
|
93
90
|
timeout. It can also be a pair (tuple) of
|
|
@@ -118,7 +115,6 @@ class SearchApi:
|
|
|
118
115
|
tags=tags,
|
|
119
116
|
model_name=model_name,
|
|
120
117
|
user_files_only=user_files_only,
|
|
121
|
-
authorization=authorization,
|
|
122
118
|
_request_auth=_request_auth,
|
|
123
119
|
_content_type=_content_type,
|
|
124
120
|
_headers=_headers,
|
|
@@ -150,7 +146,6 @@ class SearchApi:
|
|
|
150
146
|
tags: Annotated[Optional[List[StrictStr]], Field(description="The tags to be searched for")] = None,
|
|
151
147
|
model_name: Annotated[Optional[StrictStr], Field(description="The name of the model used to analyze the binary the function belongs to")] = None,
|
|
152
148
|
user_files_only: Annotated[Optional[StrictBool], Field(description="Whether to only search user's uploaded files")] = None,
|
|
153
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
154
149
|
_request_timeout: Union[
|
|
155
150
|
None,
|
|
156
151
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -182,8 +177,6 @@ class SearchApi:
|
|
|
182
177
|
:type model_name: str
|
|
183
178
|
:param user_files_only: Whether to only search user's uploaded files
|
|
184
179
|
:type user_files_only: bool
|
|
185
|
-
:param authorization: API Key bearer token
|
|
186
|
-
:type authorization: str
|
|
187
180
|
:param _request_timeout: timeout setting for this request. If one
|
|
188
181
|
number provided, it will be total request
|
|
189
182
|
timeout. It can also be a pair (tuple) of
|
|
@@ -214,7 +207,6 @@ class SearchApi:
|
|
|
214
207
|
tags=tags,
|
|
215
208
|
model_name=model_name,
|
|
216
209
|
user_files_only=user_files_only,
|
|
217
|
-
authorization=authorization,
|
|
218
210
|
_request_auth=_request_auth,
|
|
219
211
|
_content_type=_content_type,
|
|
220
212
|
_headers=_headers,
|
|
@@ -246,7 +238,6 @@ class SearchApi:
|
|
|
246
238
|
tags: Annotated[Optional[List[StrictStr]], Field(description="The tags to be searched for")] = None,
|
|
247
239
|
model_name: Annotated[Optional[StrictStr], Field(description="The name of the model used to analyze the binary the function belongs to")] = None,
|
|
248
240
|
user_files_only: Annotated[Optional[StrictBool], Field(description="Whether to only search user's uploaded files")] = None,
|
|
249
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
250
241
|
_request_timeout: Union[
|
|
251
242
|
None,
|
|
252
243
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -278,8 +269,6 @@ class SearchApi:
|
|
|
278
269
|
:type model_name: str
|
|
279
270
|
:param user_files_only: Whether to only search user's uploaded files
|
|
280
271
|
:type user_files_only: bool
|
|
281
|
-
:param authorization: API Key bearer token
|
|
282
|
-
:type authorization: str
|
|
283
272
|
:param _request_timeout: timeout setting for this request. If one
|
|
284
273
|
number provided, it will be total request
|
|
285
274
|
timeout. It can also be a pair (tuple) of
|
|
@@ -310,7 +299,6 @@ class SearchApi:
|
|
|
310
299
|
tags=tags,
|
|
311
300
|
model_name=model_name,
|
|
312
301
|
user_files_only=user_files_only,
|
|
313
|
-
authorization=authorization,
|
|
314
302
|
_request_auth=_request_auth,
|
|
315
303
|
_content_type=_content_type,
|
|
316
304
|
_headers=_headers,
|
|
@@ -337,7 +325,6 @@ class SearchApi:
|
|
|
337
325
|
tags,
|
|
338
326
|
model_name,
|
|
339
327
|
user_files_only,
|
|
340
|
-
authorization,
|
|
341
328
|
_request_auth,
|
|
342
329
|
_content_type,
|
|
343
330
|
_headers,
|
|
@@ -390,8 +377,6 @@ class SearchApi:
|
|
|
390
377
|
_query_params.append(('user_files_only', user_files_only))
|
|
391
378
|
|
|
392
379
|
# process the header parameters
|
|
393
|
-
if authorization is not None:
|
|
394
|
-
_header_params['authorization'] = authorization
|
|
395
380
|
# process the form parameters
|
|
396
381
|
# process the body parameter
|
|
397
382
|
|
|
@@ -441,7 +426,6 @@ class SearchApi:
|
|
|
441
426
|
filters: Annotated[Optional[List[Filters]], Field(description="The filters to be used for the search")] = None,
|
|
442
427
|
order_by: Annotated[Optional[AppApiRestV2CollectionsEnumsOrderBy], Field(description="The field to sort the order by in the results")] = None,
|
|
443
428
|
order_by_direction: Annotated[Optional[Order], Field(description="The order direction in which to return results")] = None,
|
|
444
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
445
429
|
_request_timeout: Union[
|
|
446
430
|
None,
|
|
447
431
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -479,8 +463,6 @@ class SearchApi:
|
|
|
479
463
|
:type order_by: AppApiRestV2CollectionsEnumsOrderBy
|
|
480
464
|
:param order_by_direction: The order direction in which to return results
|
|
481
465
|
:type order_by_direction: Order
|
|
482
|
-
:param authorization: API Key bearer token
|
|
483
|
-
:type authorization: str
|
|
484
466
|
:param _request_timeout: timeout setting for this request. If one
|
|
485
467
|
number provided, it will be total request
|
|
486
468
|
timeout. It can also be a pair (tuple) of
|
|
@@ -514,7 +496,6 @@ class SearchApi:
|
|
|
514
496
|
filters=filters,
|
|
515
497
|
order_by=order_by,
|
|
516
498
|
order_by_direction=order_by_direction,
|
|
517
|
-
authorization=authorization,
|
|
518
499
|
_request_auth=_request_auth,
|
|
519
500
|
_content_type=_content_type,
|
|
520
501
|
_headers=_headers,
|
|
@@ -550,7 +531,6 @@ class SearchApi:
|
|
|
550
531
|
filters: Annotated[Optional[List[Filters]], Field(description="The filters to be used for the search")] = None,
|
|
551
532
|
order_by: Annotated[Optional[AppApiRestV2CollectionsEnumsOrderBy], Field(description="The field to sort the order by in the results")] = None,
|
|
552
533
|
order_by_direction: Annotated[Optional[Order], Field(description="The order direction in which to return results")] = None,
|
|
553
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
554
534
|
_request_timeout: Union[
|
|
555
535
|
None,
|
|
556
536
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -588,8 +568,6 @@ class SearchApi:
|
|
|
588
568
|
:type order_by: AppApiRestV2CollectionsEnumsOrderBy
|
|
589
569
|
:param order_by_direction: The order direction in which to return results
|
|
590
570
|
:type order_by_direction: Order
|
|
591
|
-
:param authorization: API Key bearer token
|
|
592
|
-
:type authorization: str
|
|
593
571
|
:param _request_timeout: timeout setting for this request. If one
|
|
594
572
|
number provided, it will be total request
|
|
595
573
|
timeout. It can also be a pair (tuple) of
|
|
@@ -623,7 +601,6 @@ class SearchApi:
|
|
|
623
601
|
filters=filters,
|
|
624
602
|
order_by=order_by,
|
|
625
603
|
order_by_direction=order_by_direction,
|
|
626
|
-
authorization=authorization,
|
|
627
604
|
_request_auth=_request_auth,
|
|
628
605
|
_content_type=_content_type,
|
|
629
606
|
_headers=_headers,
|
|
@@ -659,7 +636,6 @@ class SearchApi:
|
|
|
659
636
|
filters: Annotated[Optional[List[Filters]], Field(description="The filters to be used for the search")] = None,
|
|
660
637
|
order_by: Annotated[Optional[AppApiRestV2CollectionsEnumsOrderBy], Field(description="The field to sort the order by in the results")] = None,
|
|
661
638
|
order_by_direction: Annotated[Optional[Order], Field(description="The order direction in which to return results")] = None,
|
|
662
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
663
639
|
_request_timeout: Union[
|
|
664
640
|
None,
|
|
665
641
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -697,8 +673,6 @@ class SearchApi:
|
|
|
697
673
|
:type order_by: AppApiRestV2CollectionsEnumsOrderBy
|
|
698
674
|
:param order_by_direction: The order direction in which to return results
|
|
699
675
|
:type order_by_direction: Order
|
|
700
|
-
:param authorization: API Key bearer token
|
|
701
|
-
:type authorization: str
|
|
702
676
|
:param _request_timeout: timeout setting for this request. If one
|
|
703
677
|
number provided, it will be total request
|
|
704
678
|
timeout. It can also be a pair (tuple) of
|
|
@@ -732,7 +706,6 @@ class SearchApi:
|
|
|
732
706
|
filters=filters,
|
|
733
707
|
order_by=order_by,
|
|
734
708
|
order_by_direction=order_by_direction,
|
|
735
|
-
authorization=authorization,
|
|
736
709
|
_request_auth=_request_auth,
|
|
737
710
|
_content_type=_content_type,
|
|
738
711
|
_headers=_headers,
|
|
@@ -763,7 +736,6 @@ class SearchApi:
|
|
|
763
736
|
filters,
|
|
764
737
|
order_by,
|
|
765
738
|
order_by_direction,
|
|
766
|
-
authorization,
|
|
767
739
|
_request_auth,
|
|
768
740
|
_content_type,
|
|
769
741
|
_headers,
|
|
@@ -829,8 +801,6 @@ class SearchApi:
|
|
|
829
801
|
_query_params.append(('order_by_direction', order_by_direction.value))
|
|
830
802
|
|
|
831
803
|
# process the header parameters
|
|
832
|
-
if authorization is not None:
|
|
833
|
-
_header_params['authorization'] = authorization
|
|
834
804
|
# process the form parameters
|
|
835
805
|
# process the body parameter
|
|
836
806
|
|
|
@@ -874,7 +844,6 @@ class SearchApi:
|
|
|
874
844
|
page_size: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items per page.")] = None,
|
|
875
845
|
partial_name: Annotated[Optional[StrictStr], Field(description="The partial or full name of the function being searched")] = None,
|
|
876
846
|
model_name: Annotated[Optional[StrictStr], Field(description="The name of the model used to analyze the binary the function belongs to")] = None,
|
|
877
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
878
847
|
_request_timeout: Union[
|
|
879
848
|
None,
|
|
880
849
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -900,8 +869,6 @@ class SearchApi:
|
|
|
900
869
|
:type partial_name: str
|
|
901
870
|
:param model_name: The name of the model used to analyze the binary the function belongs to
|
|
902
871
|
:type model_name: str
|
|
903
|
-
:param authorization: API Key bearer token
|
|
904
|
-
:type authorization: str
|
|
905
872
|
:param _request_timeout: timeout setting for this request. If one
|
|
906
873
|
number provided, it will be total request
|
|
907
874
|
timeout. It can also be a pair (tuple) of
|
|
@@ -929,7 +896,6 @@ class SearchApi:
|
|
|
929
896
|
page_size=page_size,
|
|
930
897
|
partial_name=partial_name,
|
|
931
898
|
model_name=model_name,
|
|
932
|
-
authorization=authorization,
|
|
933
899
|
_request_auth=_request_auth,
|
|
934
900
|
_content_type=_content_type,
|
|
935
901
|
_headers=_headers,
|
|
@@ -958,7 +924,6 @@ class SearchApi:
|
|
|
958
924
|
page_size: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items per page.")] = None,
|
|
959
925
|
partial_name: Annotated[Optional[StrictStr], Field(description="The partial or full name of the function being searched")] = None,
|
|
960
926
|
model_name: Annotated[Optional[StrictStr], Field(description="The name of the model used to analyze the binary the function belongs to")] = None,
|
|
961
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
962
927
|
_request_timeout: Union[
|
|
963
928
|
None,
|
|
964
929
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -984,8 +949,6 @@ class SearchApi:
|
|
|
984
949
|
:type partial_name: str
|
|
985
950
|
:param model_name: The name of the model used to analyze the binary the function belongs to
|
|
986
951
|
:type model_name: str
|
|
987
|
-
:param authorization: API Key bearer token
|
|
988
|
-
:type authorization: str
|
|
989
952
|
:param _request_timeout: timeout setting for this request. If one
|
|
990
953
|
number provided, it will be total request
|
|
991
954
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1013,7 +976,6 @@ class SearchApi:
|
|
|
1013
976
|
page_size=page_size,
|
|
1014
977
|
partial_name=partial_name,
|
|
1015
978
|
model_name=model_name,
|
|
1016
|
-
authorization=authorization,
|
|
1017
979
|
_request_auth=_request_auth,
|
|
1018
980
|
_content_type=_content_type,
|
|
1019
981
|
_headers=_headers,
|
|
@@ -1042,7 +1004,6 @@ class SearchApi:
|
|
|
1042
1004
|
page_size: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Number of items per page.")] = None,
|
|
1043
1005
|
partial_name: Annotated[Optional[StrictStr], Field(description="The partial or full name of the function being searched")] = None,
|
|
1044
1006
|
model_name: Annotated[Optional[StrictStr], Field(description="The name of the model used to analyze the binary the function belongs to")] = None,
|
|
1045
|
-
authorization: Annotated[Optional[StrictStr], Field(description="API Key bearer token")] = None,
|
|
1046
1007
|
_request_timeout: Union[
|
|
1047
1008
|
None,
|
|
1048
1009
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1068,8 +1029,6 @@ class SearchApi:
|
|
|
1068
1029
|
:type partial_name: str
|
|
1069
1030
|
:param model_name: The name of the model used to analyze the binary the function belongs to
|
|
1070
1031
|
:type model_name: str
|
|
1071
|
-
:param authorization: API Key bearer token
|
|
1072
|
-
:type authorization: str
|
|
1073
1032
|
:param _request_timeout: timeout setting for this request. If one
|
|
1074
1033
|
number provided, it will be total request
|
|
1075
1034
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1097,7 +1056,6 @@ class SearchApi:
|
|
|
1097
1056
|
page_size=page_size,
|
|
1098
1057
|
partial_name=partial_name,
|
|
1099
1058
|
model_name=model_name,
|
|
1100
|
-
authorization=authorization,
|
|
1101
1059
|
_request_auth=_request_auth,
|
|
1102
1060
|
_content_type=_content_type,
|
|
1103
1061
|
_headers=_headers,
|
|
@@ -1121,7 +1079,6 @@ class SearchApi:
|
|
|
1121
1079
|
page_size,
|
|
1122
1080
|
partial_name,
|
|
1123
1081
|
model_name,
|
|
1124
|
-
authorization,
|
|
1125
1082
|
_request_auth,
|
|
1126
1083
|
_content_type,
|
|
1127
1084
|
_headers,
|
|
@@ -1161,8 +1118,6 @@ class SearchApi:
|
|
|
1161
1118
|
_query_params.append(('model_name', model_name))
|
|
1162
1119
|
|
|
1163
1120
|
# process the header parameters
|
|
1164
|
-
if authorization is not None:
|
|
1165
|
-
_header_params['authorization'] = authorization
|
|
1166
1121
|
# process the form parameters
|
|
1167
1122
|
# process the body parameter
|
|
1168
1123
|
|
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.96.0/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.96.0\n"\
|
|
533
|
+
"SDK Package Version: v1.96.0".\
|
|
534
534
|
format(env=sys.platform, pyversion=sys.version)
|
|
535
535
|
|
|
536
536
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: revengai
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.96.0
|
|
4
4
|
Summary: RevEng.AI API
|
|
5
5
|
Project-URL: Repository, https://github.com/RevEngAI/sdk-python
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
License-File: LICENSE.md
|
|
6
8
|
Keywords: RevEng.AI API
|
|
7
9
|
Requires-Python: >=3.13
|
|
8
10
|
Requires-Dist: lazy-imports<2,>=1
|
|
@@ -12,7 +14,7 @@ Requires-Dist: typing-extensions>=4.7.1
|
|
|
12
14
|
Requires-Dist: urllib3<3.0.0,>=2.1.0
|
|
13
15
|
Description-Content-Type: text/markdown
|
|
14
16
|
|
|
15
|
-
#
|
|
17
|
+
# RevEng.AI Python SDK
|
|
16
18
|
|
|
17
19
|
This is the Python SDK for the RevEng.AI API.
|
|
18
20
|
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
revengai/__init__.py,sha256=
|
|
2
|
-
revengai/api_client.py,sha256=
|
|
1
|
+
revengai/__init__.py,sha256=pXevop-VooCx7-9bn3fkkFAnVwljNv3jPg4B46EOW78,43030
|
|
2
|
+
revengai/api_client.py,sha256=usjhnpDQX0xP_AxfbZyGNeSaCrb7awx2VtdtOQAZ3DE,27670
|
|
3
3
|
revengai/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
revengai/configuration.py,sha256=
|
|
4
|
+
revengai/configuration.py,sha256=ES7sOGbViSHClcDF9eGrVN-wR-ZGfx2BUUqLCES31Vw,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
8
|
revengai/api/__init__.py,sha256=ercHI6-ZXgrfZ-crplF-fSQbSXY4xPellnIkvTt68uc,1320
|
|
9
|
-
revengai/api/analyses_comments_api.py,sha256=
|
|
10
|
-
revengai/api/analyses_core_api.py,sha256=
|
|
11
|
-
revengai/api/analyses_dynamic_execution_api.py,sha256=
|
|
12
|
-
revengai/api/analyses_results_metadata_api.py,sha256=
|
|
13
|
-
revengai/api/analyses_security_checks_api.py,sha256=
|
|
14
|
-
revengai/api/authentication_users_api.py,sha256=
|
|
15
|
-
revengai/api/binaries_api.py,sha256=
|
|
16
|
-
revengai/api/collections_api.py,sha256=
|
|
17
|
-
revengai/api/confidence_api.py,sha256=
|
|
18
|
-
revengai/api/external_sources_api.py,sha256=
|
|
19
|
-
revengai/api/firmware_api.py,sha256=
|
|
20
|
-
revengai/api/functions_ai_decompilation_api.py,sha256=
|
|
21
|
-
revengai/api/functions_block_comments_api.py,sha256=
|
|
22
|
-
revengai/api/functions_core_api.py,sha256=
|
|
23
|
-
revengai/api/functions_data_types_api.py,sha256=
|
|
24
|
-
revengai/api/functions_decompilation_api.py,sha256=
|
|
25
|
-
revengai/api/functions_renaming_history_api.py,sha256=
|
|
26
|
-
revengai/api/models_api.py,sha256=
|
|
27
|
-
revengai/api/search_api.py,sha256=
|
|
9
|
+
revengai/api/analyses_comments_api.py,sha256=p_3N8KmHSBsBtsiW0rAc_LtsM-X3NOJEP86-9VUknoc,46292
|
|
10
|
+
revengai/api/analyses_core_api.py,sha256=7EJcKPx9LE1w5yzJFQXTmWKMhEIs4TG_hfZxoP9_K4M,184508
|
|
11
|
+
revengai/api/analyses_dynamic_execution_api.py,sha256=N1SlAlsokt8us_x11tJpjK5GSAk-kuEECNO9KqtO0dI,71948
|
|
12
|
+
revengai/api/analyses_results_metadata_api.py,sha256=jRUub32skTygbVgo4K81XLLsJlL__1I99EO55ctuVEw,73593
|
|
13
|
+
revengai/api/analyses_security_checks_api.py,sha256=YqdVI96mNOb7yyCX2gm3sDABbNr7BMO6jUtvmwKPctk,33219
|
|
14
|
+
revengai/api/authentication_users_api.py,sha256=V2J0OB6nqHvAXfxsPa3rTzTrHVLt2N9VNqyjOZpYwis,50428
|
|
15
|
+
revengai/api/binaries_api.py,sha256=dnMTtqXH1huJKE7u2oTdnr9bleU0Gl-XwNwu4gwd1Y0,61182
|
|
16
|
+
revengai/api/collections_api.py,sha256=M5HSv8acfZAd0ool2yaLCPDIvOPVdPb99S91X82A9Ag,84022
|
|
17
|
+
revengai/api/confidence_api.py,sha256=geJC30w7qKsdD_SwkJ20zfB2bBW9ybHjkB3VhSsj1Bg,47439
|
|
18
|
+
revengai/api/external_sources_api.py,sha256=A5VaijGn6ZwdoymwyhrQlLB0g83CwIg_fEwcDRTCUFw,61041
|
|
19
|
+
revengai/api/firmware_api.py,sha256=FqBqNseoyuwsvc4tAh7Uz2vIO0OSgBg2O8PkyfxLG1A,22481
|
|
20
|
+
revengai/api/functions_ai_decompilation_api.py,sha256=2ALgQsi0m8LUteUCQQa5zE3vmFb_GarRu72H1IK2x84,102514
|
|
21
|
+
revengai/api/functions_block_comments_api.py,sha256=EWIvKLiiD68OSpHKZvYcGx5Dcb1HOxw1sdzfUMPrAkE,32961
|
|
22
|
+
revengai/api/functions_core_api.py,sha256=R2Ary0b03_0adkpVMkihPTldgZTfxZFaxb4GxvsDVs4,152445
|
|
23
|
+
revengai/api/functions_data_types_api.py,sha256=2juytFuLbsQ_C_f_A3vGCeHHEET1fIoFRcOcCKDWk0E,68945
|
|
24
|
+
revengai/api/functions_decompilation_api.py,sha256=93tId0XHIUo8zPdCwoFShyvZPbptnxcTkHi9TzGX_60,77546
|
|
25
|
+
revengai/api/functions_renaming_history_api.py,sha256=2VuhjQliFO0rDcwmnl4s5BA36xgEtps2_qZdsqQI6hw,44111
|
|
26
|
+
revengai/api/models_api.py,sha256=jZ1wY48GT0JsxY-DgcwkxF5uyQTqygUYOuF8De0BQnw,10402
|
|
27
|
+
revengai/api/search_api.py,sha256=WQslQMX-fExlxONkJVy4MMfQ0VnDxqzJumYc9dbcRp0,63402
|
|
28
28
|
revengai/models/__init__.py,sha256=VbAbhW_IfAT9hJ5G1j3wcVNqZutdLPts9QHsZg7ndvY,23237
|
|
29
29
|
revengai/models/addr.py,sha256=-2N-UQsOiZ0eyEAQ7ssk0of8W2fBrXeYdTZXuVt3SZs,4787
|
|
30
30
|
revengai/models/ai_decompilation_rating.py,sha256=gyay27QJwToUNtK9NARyw731Sg8GFRTufGGUABVYyfo,722
|
|
@@ -333,6 +333,7 @@ revengai/models/vulnerabilities.py,sha256=9t6uoZd3svWyfcZJjmj6zP731Dp47Apb25y8Qt
|
|
|
333
333
|
revengai/models/vulnerability.py,sha256=P7rAOAYU5JLLpcRr824-YJgZba5kPb_J9ALV3tSNfLQ,3688
|
|
334
334
|
revengai/models/vulnerability_type.py,sha256=SyOgfMmELYYc_H84oPkikBpjwngtG5Qw9Q_86a2TPr8,866
|
|
335
335
|
revengai/models/workspace.py,sha256=chjU62GFvByEmaNd6luMNQVQLP3wlPx1zJgGJ_yyMLA,676
|
|
336
|
-
revengai-1.
|
|
337
|
-
revengai-1.
|
|
338
|
-
revengai-1.
|
|
336
|
+
revengai-1.96.0.dist-info/METADATA,sha256=Dh4rp8G0LXZQ63owDIAdnSCuMwy2JFzv_Os1jsx6Vvk,41374
|
|
337
|
+
revengai-1.96.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
338
|
+
revengai-1.96.0.dist-info/licenses/LICENSE.md,sha256=z1S-x9w52sZDqbFdJi0kL5-FLP5CR2aQA0kW8m6scaw,1052
|
|
339
|
+
revengai-1.96.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Copyright (c) 2025 RevEng.AI
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
in the Software without restriction, including without limitation the rights
|
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
furnished to do so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
14
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
15
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
16
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
17
|
+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
18
|
+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
|
19
|
+
OR OTHER DEALINGS IN THE SOFTWARE.
|
|
File without changes
|