Document toolboxDocument toolbox

IP Reputation Score (reputationscore)

Deprecated operation

This operation is deprecated and no longer supported. You will still be able to use it and add it manually to your queries, but it won’t appear in the Devo operations menu anymore. 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 field 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 field is integer.

Example

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

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

How does it work in LINQ?

Use the operator select... as...  to apply the Create field 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