Get a List of All Reputations

Endpoint URL: https://<your server>/rest/classification/download
Endpoint URI: classification/download

Action: GET

Returns a CSV list of custom reputations for files, IP addresses, and domain names. These reputations are specific to your organization.

Note

Ensure that you have logged into the Cybereason platform. For details, see Log in with the API.

Request Headers

You must add an Content-Type:application/json header with the request.

Note

If you are using cURL, add the authorization cookie details or the path to the file with cookie details with every request.


Request Body

None


Request Parameters

URL/URI parameters: none

Request Body Parameters: none


Response Status Codes

This request can return the following status codes:

  • 200: Success OK or an error message saying why


Response Success Schema

The response contains a comma-delimited (CSV) list of items, including:

  • key: The file hash value, IP address, or domain name for the custom reputation

  • reputation: The custom reputation, either whitelist or blacklist

  • prevent execution: The prevention status for Application Control, either true or false

  • comment: Any custom comments added to the reputation classification.

  • remove: Instructs the platform whether or not to overwrite the existing reputation.


Response Failure Schema

None


Example: Download the reputations list

Request

curl --request GET \
    --url https://12.34.56.78/rest/classification/download \
    --header 'Content-Type:application/json' \

Response

key,reputation,prevent execution,comment,remove
11.11.11.11,whitelist,false,null,false
12.12.12.12,blacklist,false,null,false
13.131.13.131,whitelist,false,null,false
xn--wgv12a13e.us,blacklist,false,null,false
www.website.com,blacklist,false,null,false
mail.ru.net,blacklist,false,null,false