Document toolboxDocument toolbox

IP Reputation Score (reputationscore)

This operation is deprecated and no longer supported. Contact us if you have any question.

Description

Assigns a reputation score to an IP address. The reputation score is achieved by calculating an average of scores obtained from several public IP reputation score resources.

The reputation score scale is from 0 to 100. The higher the score, the worse the reputation. 

How does it work in the search window?

Select Create column in the search window toolbar, then select the IP Reputation Score operation. This operation needs only one argument which must be a valid IPv4 address.

Argument

Data type

Argument

Data type

Reputation mandatory

ip

The data type of the new column is integer.

Example

Let's get the reputation score of the addresses in the clientIpAddress field in our demo.ecommerce.data table.  Click Create column and select the IP Reputation Score operation. Choose the clientIpAddress column as the argument and assign a name to the new column - let's call it reputationScore.

Click Create column and you'll see the new reputationScore column containing integer values.

How does it work in LINQ?

Use the operator select... as...  to apply the Create column operation. This is the valid format of the operation:

  • reputationscore(ip)

Examples

Copy the following LINQ script and use it to replicate the previous example.

from demo.ecommerce.data select reputationscore(clientIpAddress) as reputationScore