Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .sdk-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.84.6
v2.86.0
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,11 @@ Class | Method | HTTP request | Description
*AuthenticationUsersApi* | [**login_user**](docs/AuthenticationUsersApi.md#login_user) | **POST** /v2/auth/login | Authenticate a user
*BinariesApi* | [**download_zipped_binary**](docs/BinariesApi.md#download_zipped_binary) | **GET** /v2/binaries/{binary_id}/download-zipped | Downloads a zipped binary with password protection
*BinariesApi* | [**get_binary_additional_details**](docs/BinariesApi.md#get_binary_additional_details) | **GET** /v2/binaries/{binary_id}/additional-details | Gets the additional details of a binary
*BinariesApi* | [**get_binary_additional_details_status**](docs/BinariesApi.md#get_binary_additional_details_status) | **GET** /v2/binaries/{binary_id}/additional-details/status | Gets the status of the additional details task for a binary
*BinariesApi* | [**get_binary_details**](docs/BinariesApi.md#get_binary_details) | **GET** /v2/binaries/{binary_id}/details | Gets the details of a binary
*BinariesApi* | [**get_binary_die_info**](docs/BinariesApi.md#get_binary_die_info) | **GET** /v2/binaries/{binary_id}/die-info | Gets the die info of a binary
*BinariesApi* | [**get_binary_externals**](docs/BinariesApi.md#get_binary_externals) | **GET** /v2/binaries/{binary_id}/externals | Gets the external details of a binary
*BinariesApi* | [**get_binary_related_status**](docs/BinariesApi.md#get_binary_related_status) | **GET** /v2/binaries/{binary_id}/related/status | Gets the status of the unpack binary task for a binary
*BinariesApi* | [**get_related_binaries**](docs/BinariesApi.md#get_related_binaries) | **GET** /v2/binaries/{binary_id}/related | Gets the related binaries of a binary.
*CollectionsApi* | [**create_collection**](docs/CollectionsApi.md#create_collection) | **POST** /v2/collections | Creates new collection information
*CollectionsApi* | [**delete_collection**](docs/CollectionsApi.md#delete_collection) | **DELETE** /v2/collections/{collection_id} | Deletes a collection
Expand Down Expand Up @@ -147,6 +149,7 @@ Class | Method | HTTP request | Description

## Documentation For Models

- [AdditionalDetailsStatusResponse](docs/AdditionalDetailsStatusResponse.md)
- [Addr](docs/Addr.md)
- [AiDecompilationRating](docs/AiDecompilationRating.md)
- [AiUnstripRequest](docs/AiUnstripRequest.md)
Expand Down Expand Up @@ -177,6 +180,7 @@ Class | Method | HTTP request | Description
- [AutoUnstripRequest](docs/AutoUnstripRequest.md)
- [AutoUnstripResponse](docs/AutoUnstripResponse.md)
- [BaseResponse](docs/BaseResponse.md)
- [BaseResponseAdditionalDetailsStatusResponse](docs/BaseResponseAdditionalDetailsStatusResponse.md)
- [BaseResponseAnalysisCreateResponse](docs/BaseResponseAnalysisCreateResponse.md)
- [BaseResponseAnalysisDetailResponse](docs/BaseResponseAnalysisDetailResponse.md)
- [BaseResponseAnalysisFunctionMapping](docs/BaseResponseAnalysisFunctionMapping.md)
Expand All @@ -187,6 +191,7 @@ Class | Method | HTTP request | Description
- [BaseResponseAnalysisTags](docs/BaseResponseAnalysisTags.md)
- [BaseResponseAnalysisUpdateTagsResponse](docs/BaseResponseAnalysisUpdateTagsResponse.md)
- [BaseResponseBasic](docs/BaseResponseBasic.md)
- [BaseResponseBinariesRelatedStatusResponse](docs/BaseResponseBinariesRelatedStatusResponse.md)
- [BaseResponseBinaryAdditionalResponse](docs/BaseResponseBinaryAdditionalResponse.md)
- [BaseResponseBinaryDetailsResponse](docs/BaseResponseBinaryDetailsResponse.md)
- [BaseResponseBinaryExternalsResponse](docs/BaseResponseBinaryExternalsResponse.md)
Expand Down Expand Up @@ -247,6 +252,7 @@ Class | Method | HTTP request | Description
- [BaseResponseUploadResponse](docs/BaseResponseUploadResponse.md)
- [BaseResponseVulnerabilities](docs/BaseResponseVulnerabilities.md)
- [Basic](docs/Basic.md)
- [BinariesRelatedStatusResponse](docs/BinariesRelatedStatusResponse.md)
- [BinariesTaskStatus](docs/BinariesTaskStatus.md)
- [BinaryAdditionalDetailsDataResponse](docs/BinaryAdditionalDetailsDataResponse.md)
- [BinaryAdditionalResponse](docs/BinaryAdditionalResponse.md)
Expand Down
29 changes: 29 additions & 0 deletions docs/AdditionalDetailsStatusResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# AdditionalDetailsStatusResponse


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**status** | **str** | The current status of the additional details task |

## Example

```python
from revengai.models.additional_details_status_response import AdditionalDetailsStatusResponse

# TODO update the JSON string below
json = "{}"
# create an instance of AdditionalDetailsStatusResponse from a JSON string
additional_details_status_response_instance = AdditionalDetailsStatusResponse.from_json(json)
# print the JSON string representation of the object
print(AdditionalDetailsStatusResponse.to_json())

# convert the object into a dict
additional_details_status_response_dict = additional_details_status_response_instance.to_dict()
# create an instance of AdditionalDetailsStatusResponse from a dict
additional_details_status_response_from_dict = AdditionalDetailsStatusResponse.from_dict(additional_details_status_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


33 changes: 33 additions & 0 deletions docs/BaseResponseAdditionalDetailsStatusResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# BaseResponseAdditionalDetailsStatusResponse


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**status** | **bool** | Response status on whether the request succeeded | [optional] [default to True]
**data** | [**AdditionalDetailsStatusResponse**](AdditionalDetailsStatusResponse.md) | | [optional]
**message** | **str** | | [optional]
**errors** | [**List[ErrorModel]**](ErrorModel.md) | | [optional]
**meta** | [**MetaModel**](MetaModel.md) | Metadata | [optional]

## Example

```python
from revengai.models.base_response_additional_details_status_response import BaseResponseAdditionalDetailsStatusResponse

# TODO update the JSON string below
json = "{}"
# create an instance of BaseResponseAdditionalDetailsStatusResponse from a JSON string
base_response_additional_details_status_response_instance = BaseResponseAdditionalDetailsStatusResponse.from_json(json)
# print the JSON string representation of the object
print(BaseResponseAdditionalDetailsStatusResponse.to_json())

# convert the object into a dict
base_response_additional_details_status_response_dict = base_response_additional_details_status_response_instance.to_dict()
# create an instance of BaseResponseAdditionalDetailsStatusResponse from a dict
base_response_additional_details_status_response_from_dict = BaseResponseAdditionalDetailsStatusResponse.from_dict(base_response_additional_details_status_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


33 changes: 33 additions & 0 deletions docs/BaseResponseBinariesRelatedStatusResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# BaseResponseBinariesRelatedStatusResponse


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**status** | **bool** | Response status on whether the request succeeded | [optional] [default to True]
**data** | [**BinariesRelatedStatusResponse**](BinariesRelatedStatusResponse.md) | | [optional]
**message** | **str** | | [optional]
**errors** | [**List[ErrorModel]**](ErrorModel.md) | | [optional]
**meta** | [**MetaModel**](MetaModel.md) | Metadata | [optional]

## Example

```python
from revengai.models.base_response_binaries_related_status_response import BaseResponseBinariesRelatedStatusResponse

# TODO update the JSON string below
json = "{}"
# create an instance of BaseResponseBinariesRelatedStatusResponse from a JSON string
base_response_binaries_related_status_response_instance = BaseResponseBinariesRelatedStatusResponse.from_json(json)
# print the JSON string representation of the object
print(BaseResponseBinariesRelatedStatusResponse.to_json())

# convert the object into a dict
base_response_binaries_related_status_response_dict = base_response_binaries_related_status_response_instance.to_dict()
# create an instance of BaseResponseBinariesRelatedStatusResponse from a dict
base_response_binaries_related_status_response_from_dict = BaseResponseBinariesRelatedStatusResponse.from_dict(base_response_binaries_related_status_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


158 changes: 158 additions & 0 deletions docs/BinariesApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ Method | HTTP request | Description
------------- | ------------- | -------------
[**download_zipped_binary**](BinariesApi.md#download_zipped_binary) | **GET** /v2/binaries/{binary_id}/download-zipped | Downloads a zipped binary with password protection
[**get_binary_additional_details**](BinariesApi.md#get_binary_additional_details) | **GET** /v2/binaries/{binary_id}/additional-details | Gets the additional details of a binary
[**get_binary_additional_details_status**](BinariesApi.md#get_binary_additional_details_status) | **GET** /v2/binaries/{binary_id}/additional-details/status | Gets the status of the additional details task for a binary
[**get_binary_details**](BinariesApi.md#get_binary_details) | **GET** /v2/binaries/{binary_id}/details | Gets the details of a binary
[**get_binary_die_info**](BinariesApi.md#get_binary_die_info) | **GET** /v2/binaries/{binary_id}/die-info | Gets the die info of a binary
[**get_binary_externals**](BinariesApi.md#get_binary_externals) | **GET** /v2/binaries/{binary_id}/externals | Gets the external details of a binary
[**get_binary_related_status**](BinariesApi.md#get_binary_related_status) | **GET** /v2/binaries/{binary_id}/related/status | Gets the status of the unpack binary task for a binary
[**get_related_binaries**](BinariesApi.md#get_related_binaries) | **GET** /v2/binaries/{binary_id}/related | Gets the related binaries of a binary.


Expand Down Expand Up @@ -167,6 +169,84 @@ Name | Type | Description | Notes

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **get_binary_additional_details_status**
> BaseResponseAdditionalDetailsStatusResponse get_binary_additional_details_status(binary_id)

Gets the status of the additional details task for a binary

### Example

* Api Key Authentication (APIKey):

```python
import revengai
from revengai.models.base_response_additional_details_status_response import BaseResponseAdditionalDetailsStatusResponse
from revengai.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.reveng.ai
# See configuration.py for a list of all supported configuration parameters.
configuration = revengai.Configuration(
host = "https://api.reveng.ai"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure API key authorization: APIKey
configuration.api_key['APIKey'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['APIKey'] = 'Bearer'

# Enter a context with an instance of the API client
with revengai.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = revengai.BinariesApi(api_client)
binary_id = 56 # int |

try:
# Gets the status of the additional details task for a binary
api_response = api_instance.get_binary_additional_details_status(binary_id)
print("The response of BinariesApi->get_binary_additional_details_status:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling BinariesApi->get_binary_additional_details_status: %s\n" % e)
```



### Parameters


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**binary_id** | **int**| |

### Return type

[**BaseResponseAdditionalDetailsStatusResponse**](BaseResponseAdditionalDetailsStatusResponse.md)

### Authorization

[APIKey](../README.md#APIKey)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

### HTTP response details

| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | Successful Response | - |
**422** | Invalid request parameters | - |

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **get_binary_details**
> BaseResponseBinaryDetailsResponse get_binary_details(binary_id)

Expand Down Expand Up @@ -401,6 +481,84 @@ Name | Type | Description | Notes

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **get_binary_related_status**
> BaseResponseBinariesRelatedStatusResponse get_binary_related_status(binary_id)

Gets the status of the unpack binary task for a binary

### Example

* Api Key Authentication (APIKey):

```python
import revengai
from revengai.models.base_response_binaries_related_status_response import BaseResponseBinariesRelatedStatusResponse
from revengai.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.reveng.ai
# See configuration.py for a list of all supported configuration parameters.
configuration = revengai.Configuration(
host = "https://api.reveng.ai"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure API key authorization: APIKey
configuration.api_key['APIKey'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['APIKey'] = 'Bearer'

# Enter a context with an instance of the API client
with revengai.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = revengai.BinariesApi(api_client)
binary_id = 56 # int |

try:
# Gets the status of the unpack binary task for a binary
api_response = api_instance.get_binary_related_status(binary_id)
print("The response of BinariesApi->get_binary_related_status:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling BinariesApi->get_binary_related_status: %s\n" % e)
```



### Parameters


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**binary_id** | **int**| |

### Return type

[**BaseResponseBinariesRelatedStatusResponse**](BaseResponseBinariesRelatedStatusResponse.md)

### Authorization

[APIKey](../README.md#APIKey)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

### HTTP response details

| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | Successful Response | - |
**422** | Invalid request parameters | - |

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **get_related_binaries**
> BaseResponseChildBinariesResponse get_related_binaries(binary_id)

Expand Down
29 changes: 29 additions & 0 deletions docs/BinariesRelatedStatusResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# BinariesRelatedStatusResponse


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**status** | **str** | The current status of the unpack binary task |

## Example

```python
from revengai.models.binaries_related_status_response import BinariesRelatedStatusResponse

# TODO update the JSON string below
json = "{}"
# create an instance of BinariesRelatedStatusResponse from a JSON string
binaries_related_status_response_instance = BinariesRelatedStatusResponse.from_json(json)
# print the JSON string representation of the object
print(BinariesRelatedStatusResponse.to_json())

# convert the object into a dict
binaries_related_status_response_dict = binaries_related_status_response_instance.to_dict()
# create an instance of BinariesRelatedStatusResponse from a dict
binaries_related_status_response_from_dict = BinariesRelatedStatusResponse.from_dict(binaries_related_status_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


Loading